remove / from WORDCHARS for better path navigation

This commit is contained in:
Sami Samhuri 2014-08-21 12:40:33 -07:00
parent 9d53645cf6
commit f2d0f686cb

View file

@ -22,6 +22,9 @@ done
export path export path
typeset -U path typeset -U path
# remove / from word chars
export WORDCHARS='*?_-.[]~=&;!#$%^(){}<>'
[[ -d "$HOME/config/zsh" ]] && ZDOTDIR="$HOME/config/zsh" [[ -d "$HOME/config/zsh" ]] && ZDOTDIR="$HOME/config/zsh"
fpath=($fpath $ZDOTDIR/functions) fpath=($fpath $ZDOTDIR/functions)