diff --git a/zsh/modules/keybinds/init.zsh b/zsh/modules/keybinds/init.zsh index 02e966d..aee52d5 100644 --- a/zsh/modules/keybinds/init.zsh +++ b/zsh/modules/keybinds/init.zsh @@ -1,6 +1,12 @@ # CTRL+space to accept Autosuggest's suggestion. bindkey '^ ' autosuggest-accept +# fzf +# If fzf is installed, source fzf key bindings. +if (( $+commands[fzf] )); then + source <(fzf --zsh) +fi + # Open command in $EDITOR bindkey '^E' edit-command-line bindkey -M vicmd "v" edit-command-line diff --git a/zsh/zgenom b/zsh/zgenom index 4e4fd72..ff949d0 100644 --- a/zsh/zgenom +++ b/zsh/zgenom @@ -10,7 +10,6 @@ zgenom autoupdate if ! zgenom saved; then zgenom load hlissner/zsh-autopair - zgenom load unixorn/fzf-zsh-plugin zgenom load zsh-users/zsh-autosuggestions zgenom load zsh-users/zsh-completions zgenom load zdharma-continuum/fast-syntax-highlighting