Move fzf init to .zshrc as this is where fzf installer checks for it
This commit is contained in:
parent
3086a292c4
commit
658d3028c0
2 changed files with 2 additions and 2 deletions
|
@ -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
2
.zshrc
|
@ -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
|
||||||
|
|
Loading…
Reference in a new issue