aboutsummaryrefslogtreecommitdiff
path: root/init.el
diff options
context:
space:
mode:
authorMountain Man <43313373+MountainMan1312@users.noreply.github.com>2023-06-04 22:23:58 -0400
committerMountain Man <43313373+MountainMan1312@users.noreply.github.com>2023-06-04 22:23:58 -0400
commitb263774f373f91245e071e0bada5c598b7986973 (patch)
treee63b35aebdbffb604add79f5576bab01d25fc423 /init.el
parentFix a few `s-` keybinds (diff)
downloadmmosmacs-b263774f373f91245e071e0bada5c598b7986973.tar.gz
mmosmacs-b263774f373f91245e071e0bada5c598b7986973.tar.bz2
mmosmacs-b263774f373f91245e071e0bada5c598b7986973.zip
Fix cursor color and make it stop blinking
Diffstat (limited to 'init.el')
-rw-r--r--init.el7
1 files 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 @@
189(set-background-color "black") 189(set-background-color "black")
190 190
191;; Cursor 191;; Cursor
192(setq cursor-type 'box) 192(setq cursor-type 'box
193(set-cursor-color "grey13") 193 blink-cursor-blinks 0)
194(add-to-list 'default-frame-alist '(cursor-color . "orange"))
194 195
195;; Highlights 196;; Highlights
196(set-face-attribute 'highlight nil :background "#333") 197(set-face-attribute 'highlight nil :background "#333")
197 198
198;; Selection 199;; Selection
199(set-face-attribute 'region nil 200(set-face-attribute 'region nil
200 :background "#222" 201 :background "#110"
201 :foreground nil) 202 :foreground nil)
202 203
203;; Comments 204;; Comments