-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.emacs
43 lines (34 loc) · 1.19 KB
/
.emacs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
(add-to-list 'load-path "/Users/charlesgordon/.emacs.d")
(require 'color-theme)
(require 'color-theme-zenburn)
(color-theme-zenburn)
(require 'google-c-style)
(add-hook 'c-mode-common-hook 'google-set-c-style)
(add-hook 'c-mode-common-hook 'google-make-newline-indent)
(require 'ido)
(setq mac-option-key-is-meta nil)
(setq mac-command-key-is-meta t)
(setq mac-command-modifier 'meta)
(setq mac-option-modifier nil)
(menu-bar-mode -1)
(toggle-scroll-bar -1)
(tool-bar-mode -1)
(setq line-number-mode t)
(setq column-number-mode t)
(setq-default fill-column 100)
(setq-default indent-tabs-mode nil)
(setq default-tab-width 4)
(setq ido-enable-flex-matching t)
(custom-set-variables
;; custom-set-variables was added by Custom.
;; If you edit it by hand, you could mess it up, so be careful.
;; Your init file should contain only one such instance.
;; If there is more than one, they won't work right.
'(ido-case-fold t)
'(ido-mode (quote both) nil (ido)))
(custom-set-faces
;; custom-set-faces was added by Custom.
;; If you edit it by hand, you could mess it up, so be careful.
;; Your init file should contain only one such instance.
;; If there is more than one, they won't work right.
)