dotfiles

configuration files for shell, text editor, graphical environment, etc.
git clone git://src.adamsgaard.dk/dotfiles
Log | Files | Refs | README | LICENSE Back to index

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:
Minit/10_osx_xcode.sh | 0
Minit/20_osx_homebrew.sh | 0
Minit/30_osx_casks.sh | 0
Minit/30_osx_recipes.sh | 0
Minit/30_python_pip.sh | 0
Minit/50_vim.sh | 0
Ainit/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)