mirror of
https://github.com/fscotto/infra.git
synced 2026-07-30 00:30:00 +00:00
Add XFCE optional desktop
This commit is contained in:
@@ -12,6 +12,7 @@
|
||||
'core/performance
|
||||
'core/editor
|
||||
'core/keybindings
|
||||
'core/modal
|
||||
'core/buffer
|
||||
|
||||
;; Tools
|
||||
|
||||
16
dotfiles/desktop/.emacs.d/lisp/core/modal.el
Normal file
16
dotfiles/desktop/.emacs.d/lisp/core/modal.el
Normal file
@@ -0,0 +1,16 @@
|
||||
;;; 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
|
||||
Reference in New Issue
Block a user