commit 717d47d217207445ca9869699e8f4eddce3e5be1 parent 9d9ae9469c9bf3a6afe635d70c08d7346e2fd7da Author: Anders Damsgaard <andersd@riseup.net> Date: Wed, 27 Sep 2017 17:27:11 -0400 change file permissions and add zsh script Diffstat:
M | init/10_osx_xcode.sh | | | 0 | |
M | init/20_osx_homebrew.sh | | | 0 | |
M | init/30_osx_casks.sh | | | 0 | |
M | init/30_osx_recipes.sh | | | 0 | |
M | init/30_python_pip.sh | | | 0 | |
M | init/50_vim.sh | | | 0 | |
A | init/50_zsh.sh | | | 8 | ++++++++ |
7 files changed, 8 insertions(+), 0 deletions(-)
diff --git a/init/10_osx_xcode.sh b/init/10_osx_xcode.sh diff --git a/init/20_osx_homebrew.sh b/init/20_osx_homebrew.sh diff --git a/init/30_osx_casks.sh b/init/30_osx_casks.sh diff --git a/init/30_osx_recipes.sh b/init/30_osx_recipes.sh diff --git a/init/30_python_pip.sh b/init/30_python_pip.sh diff --git a/init/50_vim.sh b/init/50_vim.sh diff --git a/init/50_zsh.sh b/init/50_zsh.sh @@ -0,0 +1,8 @@ +# Clone zsh syntax highlighting and git prompt +(mkdir -p $HOME/code && cd $HOME/code && +if [ ! -d zsh-syntax-highlighting ]; then + git clone https://github.com/zsh-users/zsh-syntax-highlighting.git +fi +if [ ! -d zsh-git-prompt ]; then + git clone https://github.com/olivierverdier/zsh-git-prompt.git +fi)