2012-04-17 17:35:21 +03:00
|
|
|
;; On OS X Emacs doesn't use the shell PATH if it's not started from
|
|
|
|
;; the shell. If you're using homebrew modifying the PATH is essential.
|
|
|
|
(push "/usr/local/bin" exec-path)
|
2012-05-04 17:57:50 +03:00
|
|
|
(setenv "PATH" (concat "/usr/local/bin:" (getenv "PATH")))
|
2012-04-17 17:35:21 +03:00
|
|
|
|
|
|
|
;; Emacs users obviously have little need for Command and Option keys,
|
|
|
|
;; but they do need Meta and Super
|
|
|
|
(setq mac-command-modifier 'super)
|
|
|
|
(setq mac-option-modifier 'meta)
|
|
|
|
(provide 'prelude-osx)
|