[install] Fix #414 - Respect $ZDOTDIR
This commit is contained in:
parent
e99731ea85
commit
90d32bd756
5
install
5
install
@ -342,7 +342,8 @@ append_line() {
|
|||||||
|
|
||||||
echo
|
echo
|
||||||
for shell in bash zsh; do
|
for shell in bash zsh; do
|
||||||
append_line $update_config "[ -f ~/.fzf.${shell} ] && source ~/.fzf.${shell}" ~/.${shell}rc "~/.fzf.${shell}"
|
[ $shell = zsh ] && dest=${ZDOTDIR:-~}/.zshrc || dest=~/.bashrc
|
||||||
|
append_line $update_config "[ -f ~/.fzf.${shell} ] && source ~/.fzf.${shell}" "$dest" "~/.fzf.${shell}"
|
||||||
done
|
done
|
||||||
|
|
||||||
if [ $key_bindings -eq 1 -a $has_fish -eq 1 ]; then
|
if [ $key_bindings -eq 1 -a $has_fish -eq 1 ]; then
|
||||||
@ -353,7 +354,7 @@ fi
|
|||||||
cat << EOF
|
cat << EOF
|
||||||
Finished. Restart your shell or reload config file.
|
Finished. Restart your shell or reload config file.
|
||||||
source ~/.bashrc # bash
|
source ~/.bashrc # bash
|
||||||
source ~/.zshrc # zsh
|
source ${ZDOTDIR:-~}/.zshrc # zsh
|
||||||
EOF
|
EOF
|
||||||
[ $has_fish -eq 1 ] && echo " fzf_key_bindings # fish"; cat << EOF
|
[ $has_fish -eq 1 ] && echo " fzf_key_bindings # fish"; cat << EOF
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user