e for editing works fine (opens nvim) but A, I seem to look for vim and ignore EDITOR variable.
/bin/sh line 1: vim: command not found
Had to symlink vim to nvim to fix: sudo ln -s /usr/bin/nvim /usr/bin/vim
My config:
EDITOR=os.environ.get("EDITOR", "vi")
and yes I did: export EDITOR="/usr/bin/nvim"
e for editing works fine (opens nvim) but A, I seem to look for vim and ignore EDITOR variable.
/bin/sh line 1: vim: command not found
Had to symlink vim to nvim to fix:sudo ln -s /usr/bin/nvim /usr/bin/vim
My config:
EDITOR=os.environ.get("EDITOR", "vi")
and yes I did:export EDITOR="/usr/bin/nvim"