Indent for prettiness

This commit is contained in:
tecosaur 2020-01-29 21:20:41 +08:00
parent a8145aa3e8
commit 9b8ae5d78d

View file

@ -410,32 +410,32 @@ It's also nice to make use of the unicode characters for check boxes, and other
#+BEGIN_SRC emacs-lisp #+BEGIN_SRC emacs-lisp
(after! org (after! org
(appendq! +pretty-code-symbols (appendq! +pretty-code-symbols
'(:checkbox "☐" '(:checkbox "☐"
:pending "◼" :pending "◼"
:checkedbox "☑" :checkedbox "☑"
:results "🠶" :results "🠶"
:property "☸" :property "☸"
:option "⌥" :option "⌥"
:title "𝙏" :title "𝙏"
:author "𝘼" :author "𝘼"
:date "𝘿" :date "𝘿"
:begin_quote "" :begin_quote ""
:end_quote "" :end_quote ""
:em_dash "—")) :em_dash "—"))
(set-pretty-symbols! 'org-mode (set-pretty-symbols! 'org-mode
:merge t :merge t
:checkbox "[ ]" :checkbox "[ ]"
:pending "[-]" :pending "[-]"
:checkedbox "[X]" :checkedbox "[X]"
:results "#+RESULTS:" :results "#+RESULTS:"
:property "#+PROPERTY:" :property "#+PROPERTY:"
:option "#+OPTION:" :option "#+OPTION:"
:title "#+TITLE:" :title "#+TITLE:"
:author "#+AUTHOR:" :author "#+AUTHOR:"
:date "#+DATE:" :date "#+DATE:"
:begin_quote "#+BEGIN_QUOTE" :begin_quote "#+BEGIN_QUOTE"
:end_quote "#+END_QUOTE" :end_quote "#+END_QUOTE"
:em_dash "---") :em_dash "---")
) )
(plist-put +pretty-code-symbols :name "⁍") ; or could be good? (plist-put +pretty-code-symbols :name "⁍") ; or could be good?
#+END_SRC #+END_SRC