summaryrefslogtreecommitdiff
path: root/.emacs.d/evil-settings.el
diff options
context:
space:
mode:
Diffstat (limited to '.emacs.d/evil-settings.el')
-rw-r--r--.emacs.d/evil-settings.el21
1 files changed, 0 insertions, 21 deletions
diff --git a/.emacs.d/evil-settings.el b/.emacs.d/evil-settings.el
deleted file mode 100644
index 9821a4f..0000000
--- a/.emacs.d/evil-settings.el
+++ /dev/null
@@ -1,21 +0,0 @@
-; correct cursor color
-(setq evil-default-cursor (quote (t "Grey")))
-
-; Y == y$
-(evil-define-operator evil-yank-line-end (beg end type register)
- "Yank to end of line."
- :motion evil-end-of-line
- (interactive "<R><x>")
- (evil-yank beg end type register))
-
-(define-key evil-normal-state-map "Y" 'evil-yank-line-end)
-
-; make unicode-tokens work
-(setq repair-unicode-shortcuts
- '(progn
- (message "Repairing Unicode Shortcuts for Evil")
- (unicode-tokens-use-shortcuts 0)
- (unicode-tokens-use-shortcuts 1)))
-
-(eval-after-load 'isar repair-unicode-shortcuts)
-