I am trying to map the letter hjkl
to jkl
in my .vimrc
file
so that I can have my fingers the way they always are on the keyboard, whi
Check out :help noremap
. This will prevent maps from recursively being mapped.
use noremap:
noremap ; l
noremap l k
noremap k j
noremap j h
As a follow-up to @Lie Ryan's comment, I've written this Answer on a similar question
Basically, you might want to consider keeping:
j & k = up & down
since those are so primary
But then also consider:
l & ; = left & right