diff options
author | Urbain Vaes <urbain@vaes.uk> | 2015-07-09 15:55:16 +0100 |
---|---|---|
committer | Urbain Vaes <urbain@vaes.uk> | 2015-07-09 15:55:16 +0100 |
commit | 899da7342c88f0b3319c8baa95d41a3a0e810893 (patch) | |
tree | ffd6fd42a442e287f565b694eee113a93cc9d59a | |
parent | b76c5b392b9437c7fdccab67b2d82191f5bb06e6 (diff) |
Move from oh-my-zsh to antigen
-rw-r--r-- | zshrc | 29 |
1 files changed, 12 insertions, 17 deletions
@@ -1,20 +1,18 @@ -# Path to oh-my-zsh -export ZSH=$HOME/.oh-my-zsh +# Source antigen +source ~/.antigen.zsh -# Theme -ZSH_THEME="eastwood" - -# Enable correction -ENABLE_CORRECTION="true" +# Load the oh-my-zsh's library. +antigen use oh-my-zsh -# Dots for completion -COMPLETION_WAITING_DOTS="true" +# Bundles from the default repo (robbyrussell's oh-my-zsh). +antigen bundle git +antigen bundle vi-mode +antigen bundle ubuntu +antigen bundle tmux +antigen bundle rupa/z -# Plugins -plugins=(git nyan vi-mode ubuntu themes tmux z) - -# Source oh-my-zsh -source $ZSH/oh-my-zsh.sh +# Theme +antigen theme eastwood # User configuration export PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games" @@ -131,6 +129,3 @@ fi # Load external scripts source ~/github/fzf-marks/fzf-marks.zsh -# source ~/github/z/z.sh -# source ~/github/fzf-extras/fzf-extras.sh -# source ~/github/fzf-extras/fzf-extras.zsh |