aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--mixins/vim-like.el6
1 files changed, 5 insertions, 1 deletions
diff --git a/mixins/vim-like.el b/mixins/vim-like.el
index e3d6025..f150e4a 100644
--- a/mixins/vim-like.el
+++ b/mixins/vim-like.el
@@ -17,10 +17,14 @@
;; Evil: vi emulation
(use-package evil
:ensure t
+
:init
(setq evil-respect-visual-line-mode t)
(setq evil-undo-system 'undo-redo)
- (setq evil-want-keybinding nil) ; prep to load evil-collection
+
+ ;; Enable this if you want C-u to scroll up, more like pure Vim
+ ;(setq evil-want-C-u-scroll t)
+
:config
(evil-mode)