Add 'open in nvim' binding to zsh

This commit is contained in:
samedamci 2020-05-11 20:50:09 +02:00
parent 5560a08076
commit d03fa3689e
No known key found for this signature in database
GPG Key ID: FCB4A9A20D00E894

View File

@ -58,6 +58,11 @@ _comp_options+=(globdots)
#~~~~~~~~~~
# Bindings
#~~~~~~~~~~
## edit line in vim with ctrl-e:
autoload edit-command-line; zle -N edit-command-line
bindkey -M vicmd '^e' edit-command-line
bindkey '^e' edit-command-line
# vi mode
bindkey -v
export KEYTIMEOUT=1