You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
373 B
9 lines
373 B
;; 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)
|
|
|
|
;; 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)
|