Merge pull request #2822 from UndeadKernel/fix-org_pretty_code

lang/org: pretty symbols for the old and new word case style
This commit is contained in:
Henrik Lissner 2020-04-07 17:33:47 -04:00 committed by GitHub
commit 3ad5665e77
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 10 additions and 1 deletions

View file

@ -163,8 +163,15 @@ Is relative to `org-directory', unless it is absolute. Is used in Doom's default
(set-pretty-symbols! 'org-mode
:name "#+NAME:"
:name "#+name:"
:src_block "#+BEGIN_SRC"
:src_block_end "#+END_SRC"))
:src_block "#+begin_src"
:src_block_end "#+END_SRC"
:src_block_end "#+end_src"
:quote "#+BEGIN_QUOTE"
:quote "#+begin_quote"
:quote_end "#+END_QUOTE"
:quote_end "#+end_quote"))
(defun +org-init-babel-h ()