Skip to content

Instantly share code, notes, and snippets.

@bakkdoor
Created February 25, 2009 12:44
Show Gist options
  • Save bakkdoor/70149 to your computer and use it in GitHub Desktop.
Save bakkdoor/70149 to your computer and use it in GitHub Desktop.
(setq mac-command-modifier 'meta)
(setq x-select-enable-clipboard t)
(setq mac-option-modifier nil)
(defun fullscreen ()
"full screen mode aktivieren"
(interactive)
(when (featurep 'aquamacs)
(aquamacs-toggle-full-frame))) ; switch to fullscreen mode
(define-key global-map "\C-f" #'fullscreen)
(ido-mode 1)
;; erlang mode
(setq load-path (cons "/opt/local/lib/erlang/lib/tools-2.6.1/emacs"
load-path))
(setq erlang-root-dir "/opt/local/lib/erlang")
(setq exec-path (cons "/opt/local/lib/erlang/bin" exec-path))
(require 'erlang-start)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment