-
Notifications
You must be signed in to change notification settings - Fork 3
/
emacs.symlink
143 lines (136 loc) · 5.15 KB
/
emacs.symlink
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
;; Added by Package.el. This must come before configurations of
;; installed packages. Don't delete this line. If you don't want it,
;; just comment it out by adding a semicolon to the start of the line.
;; You may delete these explanatory comments.
(package-initialize)
(setq load-path (cons "~/" load-path))
(setq load-path (cons "~/emacs" load-path))
(setq load-path (cons "~/emacs/utils" load-path))
(load "sys-init.el")
;; Load configuration for different systems
(if (string-equal system-type "darwin")
(load "sys-macosx.el"))
(cond ((string-equal system-type "windows-nt")
(load "sys-windows.el"))
(t (load "sys-linux.el")))
(load "sys-common.el")
(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.
'(emms-lyrics-display-on-minibuffer nil)
'(emms-lyrics-display-on-modeline t)
'(js3-auto-indent-p t)
'(js3-enter-indents-newline t)
'(js3-indent-on-enter-key t)
'(muse-html-charset-default "utf-8")
'(muse-html-encoding-default (quote utf-8))
'(muse-html-meta-content-encoding (quote utf-8))
'(quack-default-program "mzscheme")
'(quack-fontify-style (quote emacs))
'(quack-programs
(quote
("lisp" "bigloo" "csi" "csi -hygienic" "gosh" "gsi" "gsi ~~/syntax-case.scm -" "guile" "kawa" "mit-scheme" "mred -z" "mzscheme" "mzscheme -il r6rs" "mzscheme -il typed-scheme" "mzscheme -M errortrace" "mzscheme3m" "mzschemecgc" "rs" "scheme" "scheme48" "scsh" "sisc" "stklos" "sxi")))
'(safe-local-variable-values
(quote
((c-set-style . "BSD")
(innamespace . 0)
(access-label . /)
(statement-case-intro . +)
(statement-case-open . +)
(case-label . +)
(label . /)
(statement-cont \,
(when
(fboundp
(quote c-no-indent-after-java-annotations))
(quote c-no-indent-after-java-annotations))
\,
(when
(fboundp
(quote c-lineup-assignments))
(quote c-lineup-assignments))
++)
(substatement-open . 0)
(inline-open . 0)
(block-open . 0)
(topmost-intro . 0)
(arglist-close . c-lineup-arglist)
(comment-intro . 0)
(inher-intro . ++)
(member-init-intro . ++)
(func-decl-cont . ++)
(c-offsets-alist
(arglist-intro google-c-lineup-expression-plus-4)
(func-decl-cont . ++)
(member-init-intro . ++)
(inher-intro . ++)
(comment-intro . 0)
(arglist-close . c-lineup-arglist)
(topmost-intro . 0)
(block-open . 0)
(inline-open . 0)
(substatement-open . 0)
(statement-cont \,
(when
(fboundp
(quote c-no-indent-after-java-annotations))
(quote c-no-indent-after-java-annotations))
\,
(when
(fboundp
(quote c-lineup-assignments))
(quote c-lineup-assignments))
++)
(label . /)
(case-label . +)
(statement-case-open . +)
(statement-case-intro . +)
(access-label . /)
(innamespace . 0))
(c-cleanup-list brace-else-brace brace-elseif-brace brace-catch-brace empty-defun-braces defun-close-semi list-close-comma scope-operator)
(c-indent-comments-syntactically-p)
(c-hanging-semi&comma-criteria c-semi&comma-no-newlines-for-oneline-inliners c-semi&comma-inside-parenlist c-semi&comma-no-newlines-before-nonblanks)
(c-hanging-colons-alist
(case-label)
(label after)
(access-label after)
(member-init-intro before)
(inher-intro))
(c-hanging-braces-alist
(defun-open after)
(defun-close before after)
(class-open after)
(class-close before after)
(namespace-open after)
(inline-open after)
(inline-close before after)
(block-open after)
(block-close . c-snug-do-while)
(extern-lang-open after)
(extern-lang-close after)
(statement-case-open after)
(substatement-open after))
(c-comment-only-line-offset . 0)
(c-enable-xemacs-performance-kludge-p . t)
(c-recognize-knr-p))))
'(scheme-program-name "mit-scheme")
'(speedbar-frame-parameters
(quote
((minibuffer)
(width . 20)
(border-width . 0)
(menu-bar-lines . 0)
(tool-bar-lines . 0)
(unsplittable . t)
(set-background-color "black")))))
(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.
'(bm-face ((t (:background "color-236" :foreground "white"))))
'(cscope-line-face ((t (:foreground "#5f8700"))))
'(ecb-default-highlight-face ((t (:background "brightgreen"))))
'(semantic-decoration-on-private-members-face ((((class color) (background dark)) (:background "#2e3330")))))