diff options
Diffstat (limited to '.config/emacs/config.org')
-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 |