Vim and Neovim plugin to remap motion keys hjkl to more natural jkl;, because this is where you fingers placed naturally for blind fast typing.
I use it for years and it work pretty good. You will not return back!
It changes default Vim's keybindings to the following:
- One char motion:
- Left: j
- Down: k
- Up: l
- Right: ;
- Motion between windows:
- To left window: Ctrl + w j
- To window below (down) current one: Ctrl + w k
- To window above (up) current one: Ctrl + w l
- To window right of current one: Ctrl + w ;
- Find next char for the f or t: '.
Install the plugin with your preferred package manager:
- Using lazy.nvim in Neovim:
require('lazy').setup({ 'njcom/hjkl-remap', }) - Using Plug in Neovim or Vim:
Plug 'njcom/hjkl-remap'
No configuration is required.
Just use the mentioned above keys.
