Move fzf init to .zshrc as this is where fzf installer checks for it

This commit is contained in:
Cyryl Płotnicki 2016-11-13 19:16:31 +01:00
parent 3086a292c4
commit 658d3028c0
2 changed files with 2 additions and 2 deletions

View file

@ -74,9 +74,7 @@ fi
TMPPREFIX="${TMPDIR%/}/zsh" TMPPREFIX="${TMPDIR%/}/zsh"
# stuff that checks if it's added to the .zshrc exipliclty
export PATH="$PATH:$HOME/.rvm/bin" # Add RVM to PATH for scripting export PATH="$PATH:$HOME/.rvm/bin" # Add RVM to PATH for scripting
[ -f ~/.fzf.zsh ] && source ~/.fzf.zsh
# other common env vars # other common env vars
source ~/.setenv source ~/.setenv

2
.zshrc
View file

@ -41,3 +41,5 @@ if [[ `uname` =~ 'CYGWIN.*' ]]; then
fi fi
alias benice="ionice -c3 nice -n20" alias benice="ionice -c3 nice -n20"
[ -f ~/.fzf.zsh ] && source ~/.fzf.zsh