aboutsummaryrefslogtreecommitdiff
path: root/.zplugrc
diff options
context:
space:
mode:
authorGuangxiong Lin <[email protected]>2023-11-15 21:16:22 +0800
committerGuangxiong Lin <[email protected]>2023-11-15 21:50:31 +0800
commitd3090f37978866e38c63c6550771a4716094ac8e (patch)
treee49ac3afa01641f6216399aef2ba2897ad6222cf /.zplugrc
parent6ff0ddbfe3245043fb888c64d3425d7168c1695b (diff)
downloaddotfiles-d3090f37978866e38c63c6550771a4716094ac8e.tar.gz
dotfiles-d3090f37978866e38c63c6550771a4716094ac8e.tar.bz2
dotfiles-d3090f37978866e38c63c6550771a4716094ac8e.zip
Migrate from zplug to zinit
Diffstat (limited to '.zplugrc')
-rwxr-xr-x.zplugrc23
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