Files
infra/dotfiles/desktop/.emacs.d/lisp/core/modal.el
Fabio Scotto di Santolo dc230feace Add XFCE optional desktop
2026-07-01 23:48:11 +02:00

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