summaryrefslogtreecommitdiff
path: root/.emacs.d/elpa/evil-readme.txt
diff options
context:
space:
mode:
authorSteve Lee <me@xiangyangli.com>2017-12-13 03:54:19 +0800
committerSteve Lee <me@xiangyangli.com>2017-12-13 03:54:19 +0800
commit6c022e47e456736bdb7f6aea4b4e3942aa973fa4 (patch)
tree573c2b26ff1ee81b1e298126f6cfc7d3ef37df59 /.emacs.d/elpa/evil-readme.txt
parentc23ecd572bf70854eaf41bd37472624371e37778 (diff)
downloaddotfiles-6c022e47e456736bdb7f6aea4b4e3942aa973fa4.tar.xz
dotfiles-6c022e47e456736bdb7f6aea4b4e3942aa973fa4.zip
untrack elpa
Diffstat (limited to '.emacs.d/elpa/evil-readme.txt')
-rw-r--r--.emacs.d/elpa/evil-readme.txt29
1 files changed, 0 insertions, 29 deletions
diff --git a/.emacs.d/elpa/evil-readme.txt b/.emacs.d/elpa/evil-readme.txt
deleted file mode 100644
index 239636a..0000000
--- a/.emacs.d/elpa/evil-readme.txt
+++ /dev/null
@@ -1,29 +0,0 @@
-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.