summary refs log tree commit diff stats
path: root/emacs
diff options
context:
space:
mode:
authorAlan Pearce2017-07-05 13:35:41 +0200
committerAlan Pearce2017-07-05 13:35:41 +0200
commit967d4abeb9be21ed2d9f7dcb4025cc8f0dc61a82 (patch)
tree4daebda832293cae6df41dc98dba31e85e9f5396 /emacs
parent4d72527ee9f7ba3a5b9ee5b978987e13189a4b8f (diff)
downloaddotfiles-967d4abeb9be21ed2d9f7dcb4025cc8f0dc61a82.tar.lz
dotfiles-967d4abeb9be21ed2d9f7dcb4025cc8f0dc61a82.tar.zst
dotfiles-967d4abeb9be21ed2d9f7dcb4025cc8f0dc61a82.zip
Emacs: Use mac-auto-operator-composition-mode on mac-port
Diffstat (limited to 'emacs')
-rw-r--r--emacs/.emacs.d/init.org7
1 files changed, 5 insertions, 2 deletions
diff --git a/emacs/.emacs.d/init.org b/emacs/.emacs.d/init.org
index 0441db4..97ddebc 100644
--- a/emacs/.emacs.d/init.org
+++ b/emacs/.emacs.d/init.org
@@ -259,10 +259,13 @@ on the right things.
 #+END_SRC
 
 Make symbols prettier.  Turns out, in many cases, this is already
-configured, just not enabled.
+configured, just not enabled.  If using the mac-port version of Emacs,
+it has it's own, more extensive version.
 
 #+BEGIN_SRC emacs-lisp
-(global-prettify-symbols-mode +1)
+(if (eq window-system 'mac)
+    (mac-auto-operator-composition-mode +1)
+    (global-prettify-symbols-mode +1))
 #+END_SRC
 
 ** Page Breaks