diff --git a/ha-aux-apps.org b/ha-aux-apps.org index 1fe072e..435d350 100644 --- a/ha-aux-apps.org +++ b/ha-aux-apps.org @@ -53,7 +53,7 @@ I would like a dedicate perspective to Mastodon, and I would like a leader key s (use-package major-mode-hydra :config - (major-mode-hydra-define mastodon-mode nil + (major-mode-hydra-define mastodon-mode (:quit-key "q") ("Timelines" (("u" mastodon-tl-update "update") ("F" mastodon-tl-get-federated-timeline "Federated") diff --git a/ha-email.org b/ha-email.org index b12917f..9410517 100644 --- a/ha-email.org +++ b/ha-email.org @@ -132,7 +132,7 @@ Also, let's do some basic configuration of Emacs' mail system: #+end_src Create a special mail perspective: -#+begin_src emacs-lisp +#+begin_src emacs-lisp :tangle no (ha-leader "a M" `("mail" . ,(ha-tab-bar-new "mail" #'notmuch))) #+end_src * Configuration diff --git a/ha-org-word-processor.org b/ha-org-word-processor.org index d4f89d5..115851b 100644 --- a/ha-org-word-processor.org +++ b/ha-org-word-processor.org @@ -27,7 +27,6 @@ A literate programming file for making Org file more readable. #+end_src * Introduction I like having org-mode files look more like a word processor than having it look like programming code. But that is me. The end results: - [[file:screenshots/org-as-word-processor.png]] * General Org Settings Since I use ellipsis in my writing… to /change/ how org renders a collapsed heading. @@ -102,7 +101,7 @@ And hook this function to Org: The list of things to try: #+BEGIN_SRC emacs-lisp - (setq org-hide-leading-stars nil) ; or t + (setq org-hide-leading-stars t) ; or t #+END_SRC ** Markup View diff --git a/screenshots/org-as-word-processor.png b/screenshots/org-as-word-processor.png index 0abc4ad..a46ee3d 100644 Binary files a/screenshots/org-as-word-processor.png and b/screenshots/org-as-word-processor.png differ