doomemacs/init/core-osx.el

16 lines
385 B
EmacsLisp
Raw Normal View History

2014-08-08 06:35:22 +08:00
;; 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)
2014-08-10 07:25:06 +08:00
;; fix emacs PATH on OSX
2014-08-30 10:37:25 +08:00
(use-package exec-path-from-shell
:if (memq window-system '(mac ns))
2014-08-08 06:35:22 +08:00
:init (exec-path-from-shell-initialize))
2014-07-15 14:21:56 +08:00
;;
(provide 'core-osx)