From b263774f373f91245e071e0bada5c598b7986973 Mon Sep 17 00:00:00 2001 From: Mountain Man <43313373+MountainMan1312@users.noreply.github.com> Date: Sun, 4 Jun 2023 22:23:58 -0400 Subject: Fix cursor color and make it stop blinking --- init.el | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/init.el b/init.el index 709abc3..f661073 100644 --- a/init.el +++ b/init.el @@ -189,15 +189,16 @@ (set-background-color "black") ;; Cursor -(setq cursor-type 'box) -(set-cursor-color "grey13") +(setq cursor-type 'box + blink-cursor-blinks 0) +(add-to-list 'default-frame-alist '(cursor-color . "orange")) ;; Highlights (set-face-attribute 'highlight nil :background "#333") ;; Selection (set-face-attribute 'region nil - :background "#222" + :background "#110" :foreground nil) ;; Comments -- cgit v1.2.3