From 9e2f11f7b2e3b00c04af09c984e942ce027adecc Mon Sep 17 00:00:00 2001 From: Enzo DO ROSARIO Date: Wed, 6 Sep 2023 20:22:36 +0200 Subject: Add comment about vim default behaviour when pressing C-u --- mixins/vim-like.el | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) 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) -- cgit v1.2.3