dotfiles

$HOME is where the <3 is
git clone git://git.alexkarle.com/dotfiles.git
Log | Files | Refs | Submodules | README

commit 749a3dc9b3e4b717630143df4c3557b2e854c169 (patch)
parent d903b0e8969d7c869520f7f35959087b16257271
Author: Alexander Karle <akarle@umass.edu>
Date:   Tue,  2 Jan 2018 15:28:09 +0000

Moved zsh-syntax-highlighting to oh-my-zsh plugins

Diffstat:
Mzshrc | 7++-----
1 file changed, 2 insertions(+), 5 deletions(-)

diff --git a/zshrc b/zshrc @@ -5,7 +5,8 @@ export ZSH=$HOME/.oh-my-zsh ZSH_THEME="refined" # Zsh plugins ( Example format: plugins=(rails git textmate ruby lighthouse) ) -plugins=(git) +# note: zsh-syntax must be last! +plugins=(git zsh-syntax-highlighting) source $ZSH/oh-my-zsh.sh @@ -35,7 +36,3 @@ alias vim='nvim' # cd to a parent directory function pcd { cd ${PWD%/$1/*}/$1; } - -# syntax highlighting in commands -# must be at end of file -source /usr/local/share/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh