diff options
-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. |