diff options
-rw-r--r-- | init.el | 13 | ||||
-rw-r--r-- | lisp/acdw-reading.el | 2 |
2 files changed, 8 insertions, 7 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))) |
diff --git a/lisp/acdw-reading.el b/lisp/acdw-reading.el index e0a7f74..5d43dac 100644 --- a/lisp/acdw-reading.el +++ b/lisp/acdw-reading.el | |||
@@ -17,8 +17,6 @@ | |||
17 | 17 | ||
18 | ;;; Code: | 18 | ;;; Code: |
19 | 19 | ||
20 | (require 'olivetti) | ||
21 | |||
22 | (defvar-local //indicate-empty-lines nil) | 20 | (defvar-local //indicate-empty-lines nil) |
23 | (defvar-local //indicate-buffer-boundaries nil) | 21 | (defvar-local //indicate-buffer-boundaries nil) |
24 | 22 | ||