doomemacs/init/core-osx.el
2014-09-05 17:08:40 -04:00

13 lines
381 B
EmacsLisp

(provide 'core-osx)
;; Use a shared clipboard
(setq x-select-enable-clipboard t)
;; Curse you Lion-esque fullscreen mode!
(setq ns-use-native-fullscreen nil)
;; Don't open files from the workspace in a new frame
(setq ns-pop-up-frames nil)
;; fix emacs PATH on OSX
(use-package exec-path-from-shell
:if (memq window-system '(mac ns))
:init (exec-path-from-shell-initialize))