diff options
author | humphreylin <[email protected]> | 2019-07-30 03:26:45 +0000 |
---|---|---|
committer | humphreylin <[email protected]> | 2019-07-30 03:26:45 +0000 |
commit | b4acdbd08e426ecaba332708d60b9dcf4b0c9c42 (patch) | |
tree | 2dde8145b40efd998111fcaa7b8254481a5cdf99 | |
parent | e44fd9f3ecb251f6519f67f6b5856cd529ac476f (diff) | |
download | dotfiles-b4acdbd08e426ecaba332708d60b9dcf4b0c9c42.tar.gz dotfiles-b4acdbd08e426ecaba332708d60b9dcf4b0c9c42.tar.bz2 dotfiles-b4acdbd08e426ecaba332708d60b9dcf4b0c9c42.zip |
add the plug git to zshrc
-rw-r--r-- | .zshrc | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -25,6 +25,7 @@ if [ ! -d ~/.zplug ]; then git clone [email protected]:zplug/zplug.git ~/.zplug fi source ~/.zplug/init.zsh +zplug "plugins/git", from:oh-my-zsh zplug "zsh-users/zsh-completions" zplug "zsh-users/zsh-syntax-highlighting" zplug "dracula/zsh", as:theme @@ -34,7 +35,7 @@ if ! zplug check --verbose; then echo; zplug install fi fi -zplug load --verbose +zplug load # fzf [ -f ~/.fzf.zsh ] && source ~/.fzf.zsh |