From 93f88200a32bc3ecc5c8c20bd1a0ddcca5270831 Mon Sep 17 00:00:00 2001 From: saibotk Date: Sat, 18 May 2019 01:36:52 +0200 Subject: [PATCH] add artisan plugin --- .zshrc | 1 + setup.sh | 7 +++++++ 2 files changed, 8 insertions(+) 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