Files
sydnix/users/crumb/programs/emacs/modules/syd-ui.el
Madeleine Sydney f02eded7fc wip: feat: Basic evil-mode configuration
Clocking in at only 15 packages, so far...
2025-01-17 16:28:45 -07:00

17 lines
388 B
EmacsLisp

;;; 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)