From 8418083b64350396680dfa38c018ae80dde0580b Mon Sep 17 00:00:00 2001 From: William Carroll Date: Wed, 21 Jun 2017 23:53:11 -0400 Subject: [PATCH] Runs evil mode for buffers that activate linum-on --- configs/.emacs | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/configs/.emacs b/configs/.emacs index 30b4273e2..e434aee84 100644 --- a/configs/.emacs +++ b/configs/.emacs @@ -165,7 +165,9 @@ (minibufferp) (string-match-p "*" (buffer-name))) (linum-mode -1) - (linum-mode nil))) + (progn + (linum-mode nil) + (evil-local-mode)))) (setq linum-format " %d ") (global-linum-mode t)) @@ -328,11 +330,7 @@ (setq evil-replace-state-cursor '("VioletRed3" bar)) (setq evil-operator-state-cursor '("VioletRed3" hollow)) (evil-ex-define-cmd (kbd "w") 'save-buffer-always) - (add-hook 'prog-mode-hook 'evil-local-mode) - (add-hook 'org-mode-hook 'evil-local-mode) - (add-hook 'markdown-mode-hook 'evil-local-mode) - (add-hook 'text-mode-hook 'evil-local-mode) - ) + (add-hook 'org-mode-hook 'evil-local-mode)) ;; Hack at the moment for extending the behavior of the jump to mark command