dotfiles/emacs/.emacs.d/config/init-evil.el

17 lines
309 B
EmacsLisp
Raw Normal View History

2021-02-21 02:59:11 +00:00
;; -*- lexical-binding: t; -*-
;; Set up Vim keybindings with evil-mode
(use-package evil
:init
2021-02-26 15:29:23 +00:00
(setq evil-want-keybinding nil
evil-respect-visual-line-mode t)
:config
2021-02-20 18:47:46 +00:00
(evil-mode 1)
:custom
(evil-undo-system 'undo-tree))
(use-package evil-collection
:after evil)
(provide 'init-evil)