mirror of
https://github.com/fscotto/infra.git
synced 2026-07-29 16:20:01 +00:00
17 lines
381 B
EmacsLisp
17 lines
381 B
EmacsLisp
;;; modal.el --- Vim motions for the desktop Emacs profile -*- lexical-binding: t; -*-
|
|
|
|
(use-package evil
|
|
:ensure t
|
|
:init
|
|
(setq evil-want-C-u-scroll t
|
|
evil-want-C-i-jump nil
|
|
evil-undo-system 'undo-redo)
|
|
:config
|
|
(evil-mode 1)
|
|
(evil-define-key '(normal visual motion) 'global
|
|
(kbd "SPC") fscotto/leader-map))
|
|
|
|
(provide 'modal)
|
|
|
|
;;; modal.el ends here
|