diff options
author | Thomas Voss <mail@thomasvoss.com> | 2023-08-22 16:36:31 +0300 |
---|---|---|
committer | Thomas Voss <mail@thomasvoss.com> | 2023-08-22 16:36:31 +0300 |
commit | ea8650502c2b281eaaa13543d0e1f2b6a8cea2e5 (patch) | |
tree | df0a5667bb774b6cd97dba5300ce34f4061cb38d | |
parent | 08fd877c33d3f5d0c387a15e01a8af565ba3a33d (diff) |
emacs: Disable cursor blinking
-rw-r--r-- | .config/emacs/config.org | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/.config/emacs/config.org b/.config/emacs/config.org index 53119e4..982cac1 100644 --- a/.config/emacs/config.org +++ b/.config/emacs/config.org @@ -839,6 +839,16 @@ I want to have all my projects automatically added to the project list. The default Emacs UI is fucking atrocious — we need to make it better. +*** Cursor Blink + +I personally don’t like cursors blinking, so let’s disable that. + +#+BEGIN_SRC elisp + + (blink-cursor-mode -1) + +#+END_SRC + *** Shorter Prompts For some reason emacs has both the ~y-or-n-p~ and ~yes-or-no-p~ functions. I do |