~ashton314/emacs-bedrock

9e2f11f7b2e3b00c04af09c984e942ce027adecc — Enzo DO ROSARIO 1 year, 14 days ago 7bbd852
Add comment about vim default behaviour when pressing C-u
1 files changed, 5 insertions(+), 1 deletions(-)

M mixins/vim-like.el
M mixins/vim-like.el => mixins/vim-like.el +5 -1
@@ 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)