Skip to content

Instantly share code, notes, and snippets.

@jrun
Created January 8, 2012 16:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jrun/1578858 to your computer and use it in GitHub Desktop.
Save jrun/1578858 to your computer and use it in GitHub Desktop.
mac specific emacs configuration
;; key bindings
(when (eq system-type 'darwin) ;; mac specific settings
(setq mac-option-key-is-meta t)
(setq mac-command-key-is-meta nil)
(setq mac-command-modifier 'control)
(global-set-key [kp-delete] 'delete-char) ;; sets fn-delete to be right-delete
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment