diff options
author | Case Duckworth | 2021-03-12 17:32:48 -0600 |
---|---|---|
committer | Case Duckworth | 2021-03-12 17:32:48 -0600 |
commit | a7454b956feb3e00e78fa967912758ebb25e904b (patch) | |
tree | a838246398e073952bf1752b6291f9589e0699bf | |
parent | Add `:set', `:local', `:require' keywords to `acdw/pkg' (diff) | |
download | emacs-a7454b956feb3e00e78fa967912758ebb25e904b.tar.gz emacs-a7454b956feb3e00e78fa967912758ebb25e904b.zip |
Change cursor for `overwrite-mode'
-rw-r--r-- | init.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/init.el b/init.el index c4d8664..5174a8d 100644 --- a/init.el +++ b/init.el | |||
@@ -140,7 +140,7 @@ | |||
140 | (cursor-in-non-selected-windows hollow))) | 140 | (cursor-in-non-selected-windows hollow))) |
141 | 141 | ||
142 | (defun hook--overwrite-mode-change-cursor () | 142 | (defun hook--overwrite-mode-change-cursor () |
143 | (setq cursor-type (if overwrite-mode t 'bar))) | 143 | (setq cursor-type (if overwrite-mode 'hbar 'bar))) |
144 | (add-hook 'overwrite-mode-hook #'hook--overwrite-mode-change-cursor) | 144 | (add-hook 'overwrite-mode-hook #'hook--overwrite-mode-change-cursor) |
145 | 145 | ||
146 | ;; Scrolling | 146 | ;; Scrolling |