darwin.el
author Luke Hoersten <Luke@Hoersten.org>
Sat, 06 Nov 2010 21:28:48 -0500
changeset 28 8f4bd2f2cc06
parent 27 7a247a2fccdd
child 29 b52bb6669eed
permissions -rw-r--r--
Aquamacs comes with more features so I removed some mac stuff.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
26
bd86fe64dfc8 Added OS specific configs.
Luke Hoersten <Luke@Hoersten.org>
parents:
diff changeset
     1
;; ~/.emacs.d/darwin.el
bd86fe64dfc8 Added OS specific configs.
Luke Hoersten <Luke@Hoersten.org>
parents:
diff changeset
     2
;; Luke Hoersten <[email protected]>
bd86fe64dfc8 Added OS specific configs.
Luke Hoersten <Luke@Hoersten.org>
parents:
diff changeset
     3
27
7a247a2fccdd Fixed up some Mac keys.
Luke Hoersten <Luke@Hoersten.org>
parents: 26
diff changeset
     4
;; Keyboard layout: caps=command, command=alt
7a247a2fccdd Fixed up some Mac keys.
Luke Hoersten <Luke@Hoersten.org>
parents: 26
diff changeset
     5
(setq-default ns-command-modifier 'control)
7a247a2fccdd Fixed up some Mac keys.
Luke Hoersten <Luke@Hoersten.org>
parents: 26
diff changeset
     6
26
bd86fe64dfc8 Added OS specific configs.
Luke Hoersten <Luke@Hoersten.org>
parents:
diff changeset
     7
(if window-system
bd86fe64dfc8 Added OS specific configs.
Luke Hoersten <Luke@Hoersten.org>
parents:
diff changeset
     8
    (progn
28
8f4bd2f2cc06 Aquamacs comes with more features so I removed some mac stuff.
Luke Hoersten <Luke@Hoersten.org>
parents: 27
diff changeset
     9
      (tabbar-mode nil)
26
bd86fe64dfc8 Added OS specific configs.
Luke Hoersten <Luke@Hoersten.org>
parents:
diff changeset
    10
      (menu-bar-mode t)
bd86fe64dfc8 Added OS specific configs.
Luke Hoersten <Luke@Hoersten.org>
parents:
diff changeset
    11
      (set-default-font "Menlo-12")
bd86fe64dfc8 Added OS specific configs.
Luke Hoersten <Luke@Hoersten.org>
parents:
diff changeset
    12
      ))
bd86fe64dfc8 Added OS specific configs.
Luke Hoersten <Luke@Hoersten.org>
parents:
diff changeset
    13
bd86fe64dfc8 Added OS specific configs.
Luke Hoersten <Luke@Hoersten.org>
parents:
diff changeset
    14
(provide 'darwin)