Difference between revisions of "Evil"
m (default in emacs24) |
|||
Line 16: | Line 16: | ||
=== Install === | === Install === | ||
− | + | If you installed it manually, move Evil to ~/.emacs.d/evil (or somewhere else in your ##load-path##). | |
+ | In any case, add the following lines to ~/.emacs: | ||
− | (add-to-list 'load-path "~/.emacs.d/evil") | + | (add-to-list 'load-path "~/.emacs.d/evil") ;;no need with 24 |
(require 'evil) | (require 'evil) | ||
(evil-mode 1) | (evil-mode 1) |
Revision as of 08:54, 8 August 2013
Evil is an extensible vi layer for Emacs. It provides Vim features like Visual selection and text objects, and is the successor to the now defunct vimpulse and vim-mode.
Quick install
Evil comes prebuilt in emacs24. In Emacs23, Evil can be downloaded and installed using el-get with: M-x el-get-install RET evil RET.
Download
Alternatively, Evil lives in a Git repository. To download Evil, do:
git clone git://gitorious.org/evil/evil.git
If you don't have Git, just head over to Gitorious and click the "Download master as tar.gz" link (extract with ##tar -xzf master.tar.gz##).
Install
If you installed it manually, move Evil to ~/.emacs.d/evil (or somewhere else in your ##load-path##). In any case, add the following lines to ~/.emacs:
(add-to-list 'load-path "~/.emacs.d/evil") ;;no need with 24 (require 'evil) (evil-mode 1)
Evil requires [UndoTree undo-tree.el] in the load-path for linear undo and undo branches. Otherwise, Evil uses regular Emacs undo.
Documentation
A brief PDF manual is available in the /doc subdirectory.
Articles
Plug-ins
- evil-surround: Port of Vim's surround script.
- evil-numbers: Vim-like increment and decrement.
- evil-leader: Port of Vim's mapleader.
Bug tracker
The bugtrucker can be found on Bitbucket.