Emacs: Use mac-auto-operator-composition-mode on mac-port
Alan Pearce alan@alanpearce.eu
Wed, 05 Jul 2017 13:35:41 +0200
1 files changed, 5 insertions(+), 2 deletions(-)
jump to
M emacs/.emacs.d/init.org → emacs/.emacs.d/init.org
@@ -259,10 +259,13 @@ (t . 1))) #+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