diff --git a/.gitmodules b/.gitmodules index 0cb22f6..3a824c8 100644 --- a/.gitmodules +++ b/.gitmodules @@ -1,3 +1,3 @@ -[submodule "zsh/prezto"] - path = zsh/prezto - url = https://github.com/sorin-ionescu/prezto +[submodule "zsh/antigen"] + path = zsh/antigen + url = https://github.com/zsh-users/antigen.git diff --git a/zsh/antigen b/zsh/antigen new file mode 160000 index 0000000..58ebc55 --- /dev/null +++ b/zsh/antigen @@ -0,0 +1 @@ +Subproject commit 58ebc559ff8fe29473d91dc5867d9ccb9d410359 diff --git a/zsh/prezto b/zsh/prezto deleted file mode 160000 index 4f19700..0000000 --- a/zsh/prezto +++ /dev/null @@ -1 +0,0 @@ -Subproject commit 4f19700919c8ebbaf75755fc0d03716d13183f49 diff --git a/zsh/zshrc b/zsh/zshrc index a9a0fb2..c384204 100644 --- a/zsh/zshrc +++ b/zsh/zshrc @@ -14,11 +14,17 @@ fpath=( typeset -gU fpath # -# Source Prezto. +# Use Antigen # -if [[ -s "${ZDOTDIR}/prezto/init.zsh" ]]; then - source "${ZDOTDIR}/prezto/init.zsh" +if [[ -s "$DOTFILES/zsh/antigen/antigen.zsh" ]]; then + source "$DOTFILES/zsh/antigen/antigen.zsh" + + antigen use prezto + + antigen bundle nojhan/liquidprompt + + antigen apply fi