Emacs config utilizing prelude as a base
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

  1. ;; On OS X Emacs doesn't use the shell PATH if it's not started from
  2. ;; the shell. If you're using homebrew modifying the PATH is essential.
  3. (push "/usr/local/bin" exec-path)
  4. ;; Emacs users obviously have little need for Command and Option keys,
  5. ;; but they do need Meta and Super
  6. (setq mac-command-modifier 'super)
  7. (setq mac-option-modifier 'meta)
  8. (provide 'prelude-osx)