From 5d6331148ab1dce6938ca106dcaf0917ab7e6447 Mon Sep 17 00:00:00 2001 From: jowj Date: Wed, 16 May 2018 13:58:04 -0500 Subject: [PATCH] add config to change mac command to Meta. --- .emacs.d/init.el | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.emacs.d/init.el b/.emacs.d/init.el index 0e94fde..830da0d 100644 --- a/.emacs.d/init.el +++ b/.emacs.d/init.el @@ -99,3 +99,7 @@ ;; neotree customizations: (setq neo-smart-open t) ;; opens with current working dir as root (neotree) ;; open neo tree on emacs start + +;; deal with mac command key problems: +(when (eq system-type 'darwin) + (setq mac-command-modifier 'meta))