diff options
author | Alan Pearce | 2017-07-05 13:35:41 +0200 |
---|---|---|
committer | Alan Pearce | 2017-07-05 13:35:41 +0200 |
commit | 967d4abeb9be21ed2d9f7dcb4025cc8f0dc61a82 (patch) | |
tree | 4daebda832293cae6df41dc98dba31e85e9f5396 /emacs/.emacs.d/init.org | |
parent | 4d72527ee9f7ba3a5b9ee5b978987e13189a4b8f (diff) | |
download | nixfiles-967d4abeb9be21ed2d9f7dcb4025cc8f0dc61a82.tar.lz nixfiles-967d4abeb9be21ed2d9f7dcb4025cc8f0dc61a82.tar.zst nixfiles-967d4abeb9be21ed2d9f7dcb4025cc8f0dc61a82.zip |
Emacs: Use mac-auto-operator-composition-mode on mac-port
Diffstat (limited to 'emacs/.emacs.d/init.org')
-rw-r--r-- | emacs/.emacs.d/init.org | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/emacs/.emacs.d/init.org b/emacs/.emacs.d/init.org index 0441db4c..97ddebc9 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 |