blob: 239636ac66583d439c65025a4e86d08ab5debb4b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
Evil is an extensible vi layer for Emacs. It emulates the main
features of Vim, and provides facilities for writing custom
extensions.
Evil lives in a Git repository. To obtain Evil, do
git clone git://github.com/emacs-evil/evil.git
Move Evil to ~/.emacs.d/evil (or somewhere else in the `load-path').
Then add the following lines to ~/.emacs:
(add-to-list 'load-path "~/.emacs.d/evil")
(require 'evil)
(evil-mode 1)
Evil requires undo-tree.el for linear undo and undo branches:
http://www.emacswiki.org/emacs/UndoTree
Otherwise, Evil uses regular Emacs undo.
Evil requires `goto-last-change' and `goto-last-change-reverse'
function for the corresponding motions g; g, as well as the
last-change-register `.'. One package providing these functions is
goto-chg.el:
http://www.emacswiki.org/emacs/GotoChg
Without this package the corresponding motions will raise an error.
|