Refactor extra ligatures list

This commit is contained in:
TEC 2022-07-28 02:31:47 +08:00
parent 2aee9fd600
commit e48581a10d
Signed by: tec
GPG Key ID: 779591AFDB81F06C
1 changed files with 12 additions and 12 deletions

View File

@ -7482,19 +7482,19 @@ other settings.
#+begin_src emacs-lisp #+begin_src emacs-lisp
(appendq! +ligatures-extra-symbols (appendq! +ligatures-extra-symbols
`(:list_property "∷" (list :list_property "∷"
:em_dash "—" :em_dash "—"
:ellipses "…" :ellipses "…"
:arrow_right "→" :arrow_right "→"
:arrow_left "←" :arrow_left "←"
:arrow_lr "↔"
:properties "⚙" :properties "⚙"
:end "∎" :end "∎"
:priority_a ,(propertize "⚑" 'face 'all-the-icons-red) :priority_a #("⚑" 0 1 (face all-the-icons-red))
:priority_b ,(propertize "⬆" 'face 'all-the-icons-orange) :priority_b #("⬆" 0 1 (face all-the-icons-orange))
:priority_c ,(propertize "■" 'face 'all-the-icons-yellow) :priority_c #("■" 0 1 (face all-the-icons-yellow))
:priority_d ,(propertize "⬇" 'face 'all-the-icons-green) :priority_d #("⬇" 0 1 (face all-the-icons-green))
:priority_e ,(propertize "❓" 'face 'all-the-icons-blue))) :priority_e #("❓" 0 1 (face all-the-icons-blue))))
:arrow_lr "↔"
(set-ligatures! 'org-mode (set-ligatures! 'org-mode
:merge t :merge t
:list_property "::" :list_property "::"