add artisan plugin
This commit is contained in:
parent
746c93f4f3
commit
93f88200a3
2 changed files with 8 additions and 0 deletions
1
.zshrc
1
.zshrc
|
@ -14,6 +14,7 @@ plugins=(
|
|||
gradle
|
||||
per-directory-history
|
||||
fzf
|
||||
artisan
|
||||
)
|
||||
|
||||
source $ZSH/oh-my-zsh.sh
|
||||
|
|
7
setup.sh
7
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
|
||||
|
|
Loading…
Add table
Reference in a new issue