diff --git a/.zshrc b/.zshrc index 4a929c6..946407f 100644 --- a/.zshrc +++ b/.zshrc @@ -14,6 +14,7 @@ plugins=( gradle per-directory-history fzf + artisan ) source $ZSH/oh-my-zsh.sh diff --git a/setup.sh b/setup.sh index f9e5e52..0b5438b 100755 --- a/setup.sh +++ b/setup.sh @@ -31,6 +31,13 @@ ln -s ~/.dotfiles/.inputrc ~/.inputrc ln -s ~/.dotfiles/tmux.conf ~/.tmux.conf ln -s ~/.dotfiles/.atom ~/.atom +# install artisan plugin +if ! [ -d ~/.oh-my-zsh/custom/plugins/artisan ]; then + echo '[INFO] Installing artisan plugin...' + git clone https://github.com/jessarcher/zsh-artisan.git ~/.oh-my-zsh/custom/plugins/artisan +else + echo '[INFO] artisan plugin already installed.' +fi # install vundle if ! [ -d ~/.vim/bundle/Vundle.vim ]; then