I've added following code at the end of my .zshrc:
export VISUAL=vim
autoload edit-command-line; zle -N edit-command-line
bindkey -M vicmd v edit-command-line
When I restart the shell, it works perfectly but all previous key bindings stop working.
I'm unable to search history (CTRL-R) and I'm unable to move in command line (CTRL-A/E) for example.
Maybe I placed these commands in the wrong place?
Any help, very appreciated!