zsh: Use zsh-users/antigen

master
Taeyeon Mori 7 years ago
parent 9f0cb257f3
commit c91e9ac346
  1. 6
      .gitmodules
  2. 1
      zsh/antigen
  3. 1
      zsh/prezto
  4. 12
      zsh/zshrc

6
.gitmodules vendored

@ -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

@ -0,0 +1 @@
Subproject commit 58ebc559ff8fe29473d91dc5867d9ccb9d410359

@ -1 +0,0 @@
Subproject commit 4f19700919c8ebbaf75755fc0d03716d13183f49

@ -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

Loading…
Cancel
Save