https://github.com/AjayMT/mo-vi-ment.git
git clone 'git://github.com/AjayMT/mo-vi-ment.git'
Mo-vi-ment is a minor mode for Emacs that provides vi-like cursor movement that's easy on your fingers. With mo-vi-ment mode enabled, you can move the cursor like so -
M-l
M-j M-;
M-k
Pressing shift before pressing the movement keys will move the cursor by page (for vertical movement) or by line (for horizontal movement). Pressing control before pressing the movement keys will make the point ‘jump’ (see mo-vi-ment-jump-length
).
Install it via MELPA.
M-x package-install RET mo-vi-ment-mode
Or drop mo-vi-ment.el
somewhere in your load path and add the following to your .emacs.d/init.el
file.
(require 'mo-vi-ment-mode)
M-x mo-vi-ment-mode
Or, for a more permanent solution, add this to your .emacs.d/init.el
file.
(mo-vi-ment-mode 1)