blob: 79071f69ce674f4cadfd0313583affb866184693 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
;; ~/.emacs.d/darwin.el
;; Luke Hoersten <[email protected]>
;; Keyboard layout: caps=command, command=alt
(setq-default ns-command-modifier 'control)
(if window-system
(progn
(tabbar-mode nil)
(menu-bar-mode t)
(set-default-font "Menlo-12")
))
(message "Loaded Darwin settings")
(provide 'darwin)
|