-
Notifications
You must be signed in to change notification settings - Fork 1
/
dot-emacs
120 lines (117 loc) · 4.29 KB
/
dot-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
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
(message "Setting up path in init.el")
(setenv "PATH"
(concat
"/usr/local/bin:"
(concat (getenv "HOME") "/anaconda/bin:") ; Need so that *compiliation* works like *shell*
(concat (getenv "HOME") "/miniconda2/bin:") ; Need so that *compiliation* works like *shell*
"/usr/local/Cellar/bison/3.0.4/bin:"
"/usr/bin:"
"/bin:"
"/usr/sbin:"
"/sbin:"
"/opt/X11/bin:"
"/usr/texbin:"
(concat (getenv "HOME") "/Development/amber/bin:")
(getenv "PATH")))
(load-file "~/.emacs.d/init.el")
(put 'narrow-to-region 'disabled nil)
(put 'downcase-region 'disabled nil)
(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.
'(ansi-color-faces-vector
[default default default italic underline success warning error])
'(ansi-color-names-vector
["black" "#d55e00" "#009e73" "#f8ec59" "#0072b2" "#cc79a7" "#56b4e9" "white"])
'(custom-enabled-themes '(dichromacy))
'(exec-path
'("/usr/bin" "/bin" "/usr/sbin" "/sbin" "/Applications/Emacs.app/Contents/MacOS/bin-x86_64-10_9" "/Applications/Emacs.app/Contents/MacOS/libexec-x86_64-10_9" "/Applications/Emacs.app/Contents/MacOS/libexec" "/Applications/Emacs.app/Contents/MacOS/bin" "/Users/meister/Development/externals-clasp/build/release/bin"))
'(gdb-non-stop-setting nil)
'(magit-pull-arguments nil)
'(package-selected-packages
'(use-package wgrep-ag ag command-log-mode iedit wgrep clang-format+ git-wip-timemachine realgud-lldb ztree fireplace folding fold-dwim json-mode yasnippet slime rainbow-blocks paredit magit gnuplot git-timemachine ggtags flylisp evil clang-format))
'(safe-local-variable-values
'((package . puri)
(eval when
(fboundp 'c-toggle-comment-style)
(c-toggle-comment-style 1))
(eval c-set-offset 'innamespace 0)
(eval c-set-offset 'brace-list-open 0)
(Package . CLPYTHON\.APP\.REPL)
(Package . CLPYTHON\.PARSER)
(Readtable . PY-AST-USER-READTABLE)
(Package . CLPYTHON)
(readtable . py-user-readtable)
(package . clpython)
(Readtable . PY-USER-READTABLE)
(Package . CLPYTHON\.TEST)
(Package . CLPYTHON\.UTIL)
(Package . CL-INTERPOL)
(Package . CLIM-INTERNALS)
(Package ITERATE :use "COMMON-LISP" :colon-mode :external)
(Lowercase . Yes)
(Package . XLIB)
(Package . CL-UNICODE)
(whitespace-style quote
(face trailing empty tabs))
(whitespace-action)
(Package . CCL)
(Package RT :use "COMMON-LISP" :colon-mode :external)
(syntax . COMMON-LISP)
(Package . monitor)
(Package . HUNCHENTOOT)
(Package . CL-USER)
(Package . CL-FAD)
(Syntax . Common-lisp)
(Package . XREF)
(Package . CL-PPCRE)
(Syntax . COMMON-LISP)
(encoding . utf-8)
(Package . LISP-UNIT)
(Base . 8)
(Package . INTL)
(Package . make)
(Package . Maxima)
(c-file-offsets
(innamespace . 0)
(substatement-open . 0)
(c . c-lineup-dont-change)
(inextern-lang . 0)
(comment-intro . c-lineup-dont-change)
(arglist-cont-nonempty . c-lineup-arglist)
(block-close . 0)
(statement-case-intro . ++)
(brace-list-intro . ++)
(cpp-define-intro . +))
(c-auto-align-backslashes)
(c-file-offsets
(innamespace . 0)
(substatement-open . 0)
(c . c-lineup-dont-change)
(inextern-lang . 0)
(comment-intro . c-lineup-dont-change)
(block-close . 0))
(c-file-offsets
(innamespace . 0)
(substatement-open . 0)
(c . c-lineup-dont-change)
(inextern-lang . 0)
(comment-intro . c-lineup-dont-change)
(arglist-cont-nonempty . llvm-c-lineup-arglist)
(block-close . 0))
(Syntax . ANSI-Common-Lisp)
(Base . 10)
(Package . C)
(Package . SYSTEM)
(Package . CLOS)
(Syntax . Common-Lisp)))
'(show-paren-mode t)
'(tool-bar-mode nil))
(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.
)