diff options
author | Case Duckworth | 2022-07-07 23:07:33 -0500 |
---|---|---|
committer | Case Duckworth | 2022-07-07 23:07:33 -0500 |
commit | 532ccb8dd40348bfcd8c73341e9517570d9563d0 (patch) | |
tree | 9ffedaa9806146619a0e297facbbcef1502a7017 /init.el | |
parent | Add burly (diff) | |
download | emacs-532ccb8dd40348bfcd8c73341e9517570d9563d0.tar.gz emacs-532ccb8dd40348bfcd8c73341e9517570d9563d0.zip |
Add hide-cursor-mode
Diffstat (limited to 'init.el')
-rw-r--r-- | init.el | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/init.el b/init.el index 1b08fe7..e391ecb 100644 --- a/init.el +++ b/init.el | |||
@@ -131,6 +131,31 @@ | |||
131 | (global-goto-address-mode) | 131 | (global-goto-address-mode) |
132 | (add-hook 'after-change-major-mode-hook #'goto-address-mode))) | 132 | (add-hook 'after-change-major-mode-hook #'goto-address-mode))) |
133 | 133 | ||
134 | (setup (:require hide-cursor-mode) ; In lisp/ | ||
135 | (:hook-into view-mode | ||
136 | Info-mode | ||
137 | Man-mode | ||
138 | help-mode | ||
139 | helpful-mode | ||
140 | notmuch-show-mode | ||
141 | magit-log-mode | ||
142 | vc-log-mode | ||
143 | nov-mode | ||
144 | elfeed-show-mode | ||
145 | reading-mode) | ||
146 | (:bind-into (view | ||
147 | Info | ||
148 | help-mode | ||
149 | helpful | ||
150 | notmuch-show | ||
151 | magit-log | ||
152 | nov | ||
153 | elfeed-show | ||
154 | reading) | ||
155 | "<f7>" #'hide-cursor-mode) | ||
156 | (:with-mode Man-mode | ||
157 | (:bind "<f7>" #'hide-cursor-mode))) | ||
158 | |||
134 | (setup (:require pulse) | 159 | (setup (:require pulse) |
135 | (:also-load +pulse) | 160 | (:also-load +pulse) |
136 | (:option pulse-flag nil | 161 | (:option pulse-flag nil |