2018-05-06 09:48:32 +03:00
|
|
|
;;; prelude-macos.el --- Emacs Prelude: macOS specific settings.
|
2013-03-23 10:52:23 +02:00
|
|
|
;;
|
2020-01-20 16:35:36 +02:00
|
|
|
;; Copyright © 2011-2020 Bozhidar Batsov
|
2013-03-23 10:52:23 +02:00
|
|
|
;;
|
|
|
|
;; Author: Bozhidar Batsov <bozhidar@batsov.com>
|
|
|
|
;; URL: https://github.com/bbatsov/prelude
|
|
|
|
|
|
|
|
;; This file is not part of GNU Emacs.
|
|
|
|
|
|
|
|
;;; Commentary:
|
|
|
|
|
2018-05-06 13:35:38 +03:00
|
|
|
;; Some macOS specific stuff.
|
2013-03-23 10:52:23 +02:00
|
|
|
|
|
|
|
;;; License:
|
|
|
|
|
|
|
|
;; This program is free software; you can redistribute it and/or
|
|
|
|
;; modify it under the terms of the GNU General Public License
|
|
|
|
;; as published by the Free Software Foundation; either version 3
|
|
|
|
;; of the License, or (at your option) any later version.
|
|
|
|
;;
|
|
|
|
;; This program is distributed in the hope that it will be useful,
|
|
|
|
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
;; GNU General Public License for more details.
|
|
|
|
;;
|
|
|
|
;; You should have received a copy of the GNU General Public License
|
|
|
|
;; along with GNU Emacs; see the file COPYING. If not, write to the
|
|
|
|
;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
|
|
|
;; Boston, MA 02110-1301, USA.
|
|
|
|
|
|
|
|
;;; Code:
|
|
|
|
|
2018-05-06 09:48:32 +03:00
|
|
|
;; On macOS Emacs doesn't use the shell PATH if it's not started from
|
2012-10-21 09:23:09 +03:00
|
|
|
;; the shell. Let's fix that:
|
2018-05-13 20:21:06 +03:00
|
|
|
(prelude-require-packages '(exec-path-from-shell))
|
2014-04-13 11:46:49 +03:00
|
|
|
|
2013-03-23 10:52:23 +02:00
|
|
|
(require 'exec-path-from-shell)
|
2012-10-21 09:23:09 +03:00
|
|
|
(exec-path-from-shell-initialize)
|
2012-04-17 17:35:21 +03:00
|
|
|
|
2013-01-17 12:17:57 +02:00
|
|
|
;; It's all in the Meta
|
2013-06-29 09:25:21 +03:00
|
|
|
(setq ns-function-modifier 'hyper)
|
2012-10-05 10:31:31 +03:00
|
|
|
|
|
|
|
(defun prelude-swap-meta-and-super ()
|
2013-04-06 17:48:13 +03:00
|
|
|
"Swap the mapping of Meta and Super.
|
|
|
|
Very useful for people using their Mac with a
|
|
|
|
Windows external keyboard from time to time."
|
2012-10-05 10:31:31 +03:00
|
|
|
(interactive)
|
|
|
|
(if (eq mac-command-modifier 'super)
|
|
|
|
(progn
|
|
|
|
(setq mac-command-modifier 'meta)
|
|
|
|
(setq mac-option-modifier 'super)
|
|
|
|
(message "Command is now bound to META and Option is bound to SUPER."))
|
2018-05-06 09:53:24 +03:00
|
|
|
(setq mac-command-modifier 'super)
|
|
|
|
(setq mac-option-modifier 'meta)
|
|
|
|
(message "Command is now bound to SUPER and Option is bound to META.")))
|
2012-10-05 10:31:31 +03:00
|
|
|
|
|
|
|
(define-key prelude-mode-map (kbd "C-c w") 'prelude-swap-meta-and-super)
|
|
|
|
|
2018-05-06 09:54:28 +03:00
|
|
|
;; There's no point in hiding the menu bar on macOS, so let's not do it
|
2013-03-22 14:22:12 +02:00
|
|
|
(menu-bar-mode +1)
|
|
|
|
|
2015-10-12 14:13:45 +03:00
|
|
|
;; Enable emoji, and stop the UI from freezing when trying to display them.
|
2018-05-06 09:53:24 +03:00
|
|
|
(when (fboundp 'set-fontset-font)
|
|
|
|
(set-fontset-font t 'unicode "Apple Color Emoji" nil 'prepend))
|
2015-11-03 02:02:22 +02:00
|
|
|
|
2015-10-12 14:13:45 +03:00
|
|
|
|
2018-05-06 09:48:32 +03:00
|
|
|
(provide 'prelude-macos)
|
|
|
|
;;; prelude-macos.el ends here
|