This is a tutorial on how to rebind vim with Colemak bindings, replacing hjkl to hnei
Other keyboard layouts also work, just replace hnei with your corresponding layout.
vim ~/.vimrc
Copy paste this into the vimrc file.
noremap j n
noremap e k
noremap i l
#noremap h h
Type
:wq
Already done! No plugin managers, just a great minimalist approach.
However, I use some extra keybinds to give back some functionality: Here are the binds that I use:
noremap n j
noremap e k
noremap i l
noremap u i
noremap l u
You can find my full .vimrc on another file in this repository.