dotfiles/zsh/modules/keybinds/init.zsh

20 lines
464 B
Bash
Raw Normal View History

2019-05-02 04:48:04 +00:00
# CTRL+space to accept Autosuggest's suggestion.
bindkey '^ ' autosuggest-accept
2019-05-02 05:49:26 +00:00
2024-07-12 04:00:50 +00:00
# fzf
# If fzf is installed, source fzf key bindings.
if (( $+commands[fzf] )); then
source <(fzf --zsh)
fi
2019-05-02 05:49:26 +00:00
# Open command in $EDITOR
bindkey '^E' edit-command-line
bindkey -M vicmd "v" edit-command-line
# Start of line
bindkey '^[[1~' beginning-of-line
bindkey -M vicmd '^[[1~' beginning-of-line
# End of line
bindkey '^[[4~' end-of-line
bindkey -M vicmd '^[[4~' end-of-line