From 875ec36c729de6650c387ce3a04d9af02975aa74 Mon Sep 17 00:00:00 2001 From: Orien Vandenbergh Date: Mon, 20 May 2024 20:44:02 -0400 Subject: [PATCH] Add a first pass at an init script, and some "documentation" --- zsh/README.md | 5 +++++ zsh/init-zsh.sh | 14 ++++++++++++++ 2 files changed, 19 insertions(+) create mode 100644 zsh/README.md create mode 100644 zsh/init-zsh.sh diff --git a/zsh/README.md b/zsh/README.md new file mode 100644 index 0000000..aeaded1 --- /dev/null +++ b/zsh/README.md @@ -0,0 +1,5 @@ +# My ZSH environment + +## How to install + +curl -sL https://git.momodomo.us/nichus/sundry/raw/branch/main/zsh/init-zsh.sh | zsh diff --git a/zsh/init-zsh.sh b/zsh/init-zsh.sh new file mode 100644 index 0000000..217be9f --- /dev/null +++ b/zsh/init-zsh.sh @@ -0,0 +1,14 @@ +#!/usr/bin/zsh + +# This is where my configurations live +REPO=https://git.momodomo.us/nichus/sundry.git + +# First we're going to pull my version of the ZPLUG stuff +git clone https://github.com/nichus/zplug-fork $HOME/.zplug + +mkdir git +git clone $REPO git/sundry + +install -vt $HOME/.zsh git/sundry/zsh +ln -vs zshrc $HOME/.zshrc +mv -v $HOME/zshenv .zshenv