diff options
author | Mountain Man <43313373+MountainMan1312@users.noreply.github.com> | 2023-06-04 22:23:58 -0400 |
---|---|---|
committer | Mountain Man <43313373+MountainMan1312@users.noreply.github.com> | 2023-06-04 22:23:58 -0400 |
commit | b263774f373f91245e071e0bada5c598b7986973 (patch) | |
tree | e63b35aebdbffb604add79f5576bab01d25fc423 /init.el | |
parent | Fix a few `s-` keybinds (diff) | |
download | mmosmacs-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.el | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -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 |