From be412c8630043239e82f06f722f137483ff22d58 Mon Sep 17 00:00:00 2001 From: Henrik Lissner Date: Mon, 13 Apr 2020 21:13:52 -0400 Subject: [PATCH] Restore blinking cursor default Sure it's distracting, but it's also a good indicator that Emacs hasn't frozen. Not that Emacs has every frozen on me, but my computer has, so... Plus, visible-cursor doesn't do anything on any of the systems, terminals and shells I've tested, so I'll just leave it to its default. --- core/core-ui.el | 5 ----- 1 file changed, 5 deletions(-) diff --git a/core/core-ui.el b/core/core-ui.el index 3f4563f7b..589b40af9 100644 --- a/core/core-ui.el +++ b/core/core-ui.el @@ -203,14 +203,9 @@ read-only or not file-visiting." ;; ;;; Cursor -;; Don't blink the cursor, it's too distracting. -(blink-cursor-mode -1) - ;; Don't blink the paren matching the one at point, it's too distracting. (setq blink-matching-paren nil) -(setq visible-cursor nil) - ;; Don't stretch the cursor to fit wide characters, it is disorienting, ;; especially for tabs. (setq x-stretch-cursor nil)