diff options
Diffstat (limited to '.zplugrc')
-rwxr-xr-x | .zplugrc | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/.zplugrc b/.zplugrc deleted file mode 100755 index 1c2ac00..0000000 --- a/.zplugrc +++ /dev/null @@ -1,23 +0,0 @@ -#!/usr/bin/env zsh - -export ZPLUG_HOME=$HOME/.zplug - -if [ ! -d $ZPLUG_HOME ]; then - echo 'Installing zplug ... ' - git clone https://github.com/zplug/zplug.git $ZPLUG_HOME -fi -source $ZPLUG_HOME/init.zsh - -zplug "zsh-users/zsh-completions" -# zsh-syntax-highlighting must be loaded after other plugins -zplug "zsh-users/zsh-syntax-highlighting", defer:2 -zplug "dracula/zsh", as:theme - -if ! zplug check --verbose; then - printf "Install? [y/N]: " - if read -q; then - echo; zplug install - fi -fi - -zplug load |