diff options
| author | Craig Jennings <c@cjennings.net> | 2026-05-12 06:24:20 -0500 |
|---|---|---|
| committer | Craig Jennings <c@cjennings.net> | 2026-05-12 06:24:20 -0500 |
| commit | 306fce441bffad6d582cc612a806d5cdc0c72a18 (patch) | |
| tree | 34ae39250ddee4c7b5499291c451239c82cf2a23 | |
| parent | 96ae6e1172ecb8ba083ecc1b28124bbcd589fbc2 (diff) | |
| download | dotemacs-306fce441bffad6d582cc612a806d5cdc0c72a18.tar.gz dotemacs-306fce441bffad6d582cc612a806d5cdc0c72a18.zip | |
chore(ui): disable cursor blinking (keep a solid block)
| -rw-r--r-- | modules/ui-config.el | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/modules/ui-config.el b/modules/ui-config.el index f9fddb0dc..5d3a66431 100644 --- a/modules/ui-config.el +++ b/modules/ui-config.el @@ -150,6 +150,10 @@ Only updates for real user buffers, not internal/temporary buffers." (cj/set-cursor-type 'box) +;; Keep the cursor a solid block -- no blinking (including the initial blink +;; burst when entering read-only buffers like EPUBs or vterm). +(blink-cursor-mode -1) + ;; --------------------------------- Nerd Icons -------------------------------- ;; use icons from nerd fonts in the Emacs UI |
