From f4477217ec98e4b127df1e018dd68b5dfbdec741 Mon Sep 17 00:00:00 2001 From: larstvei Date: Sat, 26 Oct 2024 16:08:57 +0200 Subject: [PATCH] Try org-appear It is a bit buggy, but also a bit nice. --- init.org | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/init.org b/init.org index 496c2fb..b80d535 100644 --- a/init.org +++ b/init.org @@ -1034,6 +1034,25 @@ #+end_src +** Org appear + + Setting ~org-hide-emphasis-markers~ to ~t~ often makes it harder to edit markup + (i have found myself sometimes reverting to ~fundamental-mode~ because of + this). The package [[https://github.com/awth13/org-appear][org-appear]] automatically shows the hidden markup when the + cursor is on it. + + #+begin_src emacs-lisp + + (use-package org-appear + :hook (org-mode . org-appear-mode) + :config + (setq org-appear-autosubmarkers t + org-appear-autoentities t + org-appear-autolinks t + org-appear-inside-latex t)) + + #+end_src + ** GitHub flavored markdown I guess I have to include my (semi-abandoned) mode [[https://github.com/larstvei/ox-gfm][ox-gfm]] for exporting org