shells: fix typo

This commit is contained in:
Marco Thomas
2023-03-08 22:51:19 +01:00
parent 87363190c0
commit 9976c2b126
2 changed files with 2 additions and 2 deletions

View File

@@ -48,7 +48,7 @@ export FZF_DEFAULT_OPTS='
--color=marker:#5c6a72,spinner:#5c6a72,header:#5c6a72'
if [[ -d ~/.vim/plugged/fzf ]]; then
[[ -x $(which fzf 2> /dev/null )]] || PATH=$PATH:$HOME/.vim/plugged/fzf/bin
[[ -x $(which fzf 2> /dev/null) ]] || export PATH=$PATH:$HOME/.vim/plugged/fzf/bin
source ~/.vim/plugged/fzf/shell/completion.bash
source ~/.vim/plugged/fzf/shell/key-bindings.bash
bind '"":"fzf-file-widget\n"'

View File

@@ -92,7 +92,7 @@ export FZF_DEFAULT_OPTS='
--color=marker:#5c6a72,spinner:#5c6a72,header:#5c6a72'
if [[ -d ~/.vim/plugged/fzf ]]; then
[[ -x $(which fzf 2> /dev/null) ]] || PATH=$PATH:$HOME/.vim/plugged/fzf/bin
[[ -x $(which fzf 2> /dev/null) ]] || export PATH=$PATH:$HOME/.vim/plugged/fzf/bin
source ~/.vim/plugged/fzf/shell/completion.zsh
source ~/.vim/plugged/fzf/shell/key-bindings.zsh
bindkey '^F' fzf-file-widget