about summary refs log tree commit diff stats
path: root/init.el
diff options
context:
space:
mode:
authorCase Duckworth2021-09-28 16:21:53 -0500
committerCase Duckworth2021-09-28 16:21:53 -0500
commit511bf4efc3f9420ea54eff974f8be53043a668a5 (patch)
tree3a12fed9f3da3902b6b146525f54125f7fc32ece /init.el
parentAdd acdw-circe.el (diff)
downloademacs-511bf4efc3f9420ea54eff974f8be53043a668a5.tar.gz
emacs-511bf4efc3f9420ea54eff974f8be53043a668a5.zip
Fix loading
Diffstat (limited to 'init.el')
-rw-r--r--init.el13
1 files changed, 8 insertions, 5 deletions
diff --git a/init.el b/init.el index a5efd8b..a0039ac 100644 --- a/init.el +++ b/init.el
@@ -1303,13 +1303,15 @@ specific to most general, they are these:
1303 :files (:defaults 1303 :files (:defaults
1304 (:exclude "helm-dogears.el")))) 1304 (:exclude "helm-dogears.el"))))
1305 (:option (append savehist-additional-variables) 'dogears-list) 1305 (:option (append savehist-additional-variables) 'dogears-list)
1306 (dolist (mode '(magit-status-mode 1306 (with-eval-after-load 'dogears
1307 elfeed-show-mode 1307 (dolist (mode '(magit-status-mode
1308 elfeed-search-mode)) 1308 elfeed-show-mode
1309 (:option (append dogears-ignore-modes) mode)) 1309 elfeed-search-mode))
1310 (:option (append dogears-ignore-modes) mode)))
1310 (:global "M-g d" dogears-go 1311 (:global "M-g d" dogears-go
1311 "M-g M-b" dogears-back 1312 "M-g M-b" dogears-back
1312 "M-g M-f" dogears-forward) 1313 "M-g M-f" dogears-forward)
1314 (:autoload dogears-mode)
1313 (dogears-mode +1)) 1315 (dogears-mode +1))
1314 1316
1315(setup (:straight edit-indirect)) 1317(setup (:straight edit-indirect))
@@ -1361,6 +1363,7 @@ specific to most general, they are these:
1361 ("youtube.com" video) 1363 ("youtube.com" video)
1362 ("tilde.news" social) 1364 ("tilde.news" social)
1363 ("xkcd.com" comics))))) 1365 ("xkcd.com" comics)))))
1366 (:autoload elfeed-set-timeout)
1364 (elfeed-set-timeout 3600) 1367 (elfeed-set-timeout 3600)
1365 (elfeed-protocol-enable) 1368 (elfeed-protocol-enable)
1366 (:advise elfeed :after 1369 (:advise elfeed :after
@@ -1685,7 +1688,7 @@ browser defined in `browse-url-secondary-browser-function'."
1685 (:with-mode help-mode (:bind key #'link-hint-open-link)) 1688 (:with-mode help-mode (:bind key #'link-hint-open-link))
1686 (:with-feature helpful (:bind key #'link-hint-open-link)) 1689 (:with-feature helpful (:bind key #'link-hint-open-link))
1687 (:with-mode Info-mode (:bind key #'link-hint-open-link)) 1690 (:with-mode Info-mode (:bind key #'link-hint-open-link))
1688 (:with-mode reading-mode (:bind key #'link-hint-open-link)))) 1691 (:with-feature reading (:bind key #'link-hint-open-link))))
1689 1692
1690(setup (:straight lua-mode) 1693(setup (:straight lua-mode)
1691 (:file-match (rx ".lua" eos))) 1694 (:file-match (rx ".lua" eos)))