wip: feat: Basic evil-mode configuration

Clocking in at only 15 packages, so far...
This commit is contained in:
Madeleine Sydney
2025-01-06 07:07:01 -07:00
parent bfd271125e
commit f02eded7fc
5 changed files with 131 additions and 0 deletions

View File

@@ -1,7 +1,16 @@
;;; syd-ui.el -*- lexical-binding: t; -*-
(use-package which-key
:custom
(which-key-allow-evil-operators t)
(which-key-show-operator-state-maps t)
:config
(which-key-mode 1))
(use-package emacs
:config
;; Disable blinking cursor. I don't really like it, but it also doesn't play
;; well with `evil-terminal-cursor-changer'.
(blink-cursor-mode -1))
(provide 'syd-ui)