diff options
author | jao <jao@gnu.org> | 2022-01-11 23:49:14 +0000 |
---|---|---|
committer | jao <jao@gnu.org> | 2022-01-11 23:49:14 +0000 |
commit | 654dc5cbc78fc8abb35f6020aa07f287a6002cc2 (patch) | |
tree | dff871451e14213f943f4a7ffdb347806659ffb2 | |
parent | 1378aaead0c1cc60e634972931d4a87b67fdca97 (diff) | |
download | elibs-654dc5cbc78fc8abb35f6020aa07f287a6002cc2.tar.gz elibs-654dc5cbc78fc8abb35f6020aa07f287a6002cc2.tar.bz2 |
nits
-rw-r--r-- | eww.org | 2 | ||||
-rw-r--r-- | init.org | 8 | ||||
-rw-r--r-- | notmuch.org | 4 | ||||
-rw-r--r-- | org.org | 1 |
4 files changed, 10 insertions, 5 deletions
@@ -148,7 +148,7 @@ ("O" . jao-eww-browse-new) ("r" . jao-eww-reload) ("s" . eww-search-words) - ("S" . jao-eww-session-load) + ("S" . jao-eww-browse-new) ("u" . jao-eww-reopen) ("U" . jao-eww-reopen-new) ("w" . org-eww-copy-for-org-mode) @@ -1834,9 +1834,11 @@ :init (setq eshell-directory-name "~/.emacs.d/eshell") (setq eshell-hist-ignoredups 'erase) - :config - (add-hook 'eshell-mode-hook - (lambda () (setq outline-regexp eshell-prompt-regexp)))) + + (defun jao-eshell--outline () + (setq-local outline-regexp eshell-prompt-regexp)) + + :hook (eshell-mode . jao-eshell--outline)) #+end_src ***** Colors #+begin_src emacs-lisp diff --git a/notmuch.org b/notmuch.org index 48e648c..d4dead2 100644 --- a/notmuch.org +++ b/notmuch.org @@ -108,7 +108,9 @@ (cons "tag:prog" (mapcar (lambda (tag) (format "not tag:%s" tag)) - jao-notmuch--feed-tags)))))) + `("emacs" + "emacs-orgmode" + ,@jao-notmuch--feed-tags))))))) (defvar jao-notmuch-emacs-searches `(,(jao-notmuch--sq "emacs" "ee" "emacs" "feeds") @@ -96,6 +96,7 @@ #+begin_src emacs-lisp ;; Show hidden emphasis markers (use-package org-appear + :ensure t :hook (org-mode . org-appear-mode)) ;; #+caption: Image caption. |