add artisan plugin

This commit is contained in:
saibotk 2019-05-18 01:36:52 +02:00
parent 746c93f4f3
commit 93f88200a3
2 changed files with 8 additions and 0 deletions

1
.zshrc
View file

@ -14,6 +14,7 @@ plugins=(
gradle
per-directory-history
fzf
artisan
)
source $ZSH/oh-my-zsh.sh

View file

@ -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