doomemacs/init/core-osx.el

16 lines
413 B
EmacsLisp
Raw Normal View History

2014-08-07 18:35:22 -04: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)
(my/install-package 'exec-path-from-shell) ; fix emacs PATH on OSX
(use-package exec-path-from-shell
:if window-system
:init (exec-path-from-shell-initialize))
2014-07-15 02:21:56 -04:00
;;
(provide 'core-osx)