17 lines
388 B
EmacsLisp
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)
|