about summary refs log tree commit diff stats
path: root/init.el
diff options
context:
space:
mode:
authorCase Duckworth2020-09-15 20:15:26 -0500
committerCase Duckworth2020-09-15 20:15:26 -0500
commit86934e2672359c9b56123b80b122ddb73ee70caa (patch)
tree1050bbf3f909528099e231508d05051800db3f60 /init.el
parentadd savehist variables (diff)
downloademacs-86934e2672359c9b56123b80b122ddb73ee70caa.tar.gz
emacs-86934e2672359c9b56123b80b122ddb73ee70caa.zip
Fix hooks
Diffstat (limited to 'init.el')
-rw-r--r--init.el8
1 files changed, 4 insertions, 4 deletions
diff --git a/init.el b/init.el index d65546e..ac84084 100644 --- a/init.el +++ b/init.el
@@ -213,8 +213,8 @@
213 :config 213 :config
214 (use-package company-quickhelp 214 (use-package company-quickhelp
215 :hook 215 :hook
216 (company-mode . (lambda () 216 (company-mode-hook . (lambda ()
217 (company-quickhelp-local-mode))))) 217 (company-quickhelp-local-mode)))))
218 218
219(use-package helpful 219(use-package helpful
220 :bind 220 :bind
@@ -267,8 +267,8 @@
267 (when acdw/at-larry 267 (when acdw/at-larry
268 (setq display-time-format "%R") 268 (setq display-time-format "%R")
269 (display-time-mode)) 269 (display-time-mode))
270 :config 270 :hook
271 (doom-modeline-mode)) 271 (after-init-hook . doom-modeline-mode))
272 272
273(when acdw/at-larry 273(when acdw/at-larry
274 (use-package statusbar 274 (use-package statusbar