summary refs log tree commit diff
path: root/emacs
diff options
context:
space:
mode:
authornoa@gaiwan.org2024-06-12 22:58:33 +0000
committernoa@gaiwan.org2024-06-12 22:58:33 +0000
commita3fb4c2c2aa6626e66e03852b578718fe1433598 (patch)
treed76a7d921d75a33e11baa402816fd8e386e05e99 /emacs
parentd67201febe01806b2093d41bce78f60c8f34f77a (diff)
Don't enable org-pretty-entities
I don't use latex syntax for symbols, so it's a useless option for me.  Because that's not my habit, it's useful to know what really is and isn't in the buffer.
Diffstat (limited to 'emacs')
-rw-r--r--emacs/init.el1
1 files changed, 0 insertions, 1 deletions
diff --git a/emacs/init.el b/emacs/init.el
index 8574a37..503af54 100644
--- a/emacs/init.el
+++ b/emacs/init.el
@@ -258,7 +258,6 @@ and when JID is not in `jabber-activity-banned'."
 
 (use-package org
 	:custom
-	(org-pretty-entities t)
 	(org-use-sub-superscripts "{}")
 	;; If we enable this, emphasis markers will be hidden for a more word processor feel.  This has the downside of meaning you have to delete a hidden character to get rid of bold or italic text.  I don't have much of a problem with seeing the emphasis markers so i'm willing to put up with any aesthetic shortcomings for a better user experience.  The package org-appear solves this by hiding them, but showing them when the point is over them, but i don't think having a whole package just for that is worth it.
 	(org-hide-emphasis-markers nil)