-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathload-eemacs.el
235 lines (179 loc) · 8.27 KB
/
load-eemacs.el
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
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
;; Automatically generated by makeEemacs
;;; init.el --- emacs initialisation top-level
;; -----------------------------------------------------------------------------
;;; Add personal lisp directory to the search path
(add-to-list 'load-path (expand-file-name "~/.emacs.d/init"))
(add-to-list 'load-path (expand-file-name "~/.emacs.d/lisp"))
(add-to-list 'load-path (expand-file-name "~/.emacs.d/my-lisp"))
(add-to-list 'load-path (expand-file-name "~/.emacs.d/my-lisp/tree-mode"))
(add-to-list 'load-path (expand-file-name "~/.emacs.d/packages/paredit"))
;; -----------------------------------------------------------------------------
;;; Load the quick initialisation file
(load "qinit")
;; -----------------------------------------------------------------------------
;;; Personal key-map
(load "init-my-map")
;; -----------------------------------------------------------------------------
;;; Common initialisation settings
(load "init-common")
;; -----------------------------------------------------------------------------
;;; Personal key-bindings etc.
(load "init-personalisation")
;; -----------------------------------------------------------------------------
;;; Mouse configuration
(load "init-mouse")
;; -----------------------------------------------------------------------------
;;; Window navigation
(load "init-window-nav")
;; -----------------------------------------------------------------------------
;;; Controls for backup files
(load "init-backups")
;; -----------------------------------------------------------------------------
;;; Isearch configuration and extensions
(load "init-isearch")
;; -----------------------------------------------------------------------------
;;; flyspell: on-the-fly spell checking
(load "init-flyspell")
;; -----------------------------------------------------------------------------
;;; Calendar and Diary
(autoload 'calendar "init-diary" "Calendar/Diary" t)
(autoload 'autoload-init-diary "init-diary" "Calendar/Diary" t)
(autoload 'my-open-calendar "init-diary" "Calendar/Diary" t)
;; -----------------------------------------------------------------------------
;;; CEDET
;;(load "init-cedet")
;; -----------------------------------------------------------------------------
;;; OpenFOAM settings
(load "init-OpenFOAM")
;; -----------------------------------------------------------------------------
;;; ELisp settings
(load "init-elisp")
;; -----------------------------------------------------------------------------
;;; Lisp slime settings
;;(load "init-slime")
;; -----------------------------------------------------------------------------
;;; EuLisp settings
;;(load "init-eulisp")
;; -----------------------------------------------------------------------------
;;; GOOFIE settings
(load "init-goofie")
;; -----------------------------------------------------------------------------
;;; Haskell settings
(load "init-haskell")
;; -----------------------------------------------------------------------------
;;; Rust settings
(load "init-rust")
;; -----------------------------------------------------------------------------
;;; LaTeX settings
(load "init-latex")
;; -----------------------------------------------------------------------------
;;; Print settings
(load "init-printing")
;; -----------------------------------------------------------------------------
;;; Thing at point settings
(load "init-thingatpt")
;; -----------------------------------------------------------------------------
;;; Bookmark settings
(load "init-bookmark")
;; -----------------------------------------------------------------------------
;;; File-journal settings
(load "init-file-journal")
;; -----------------------------------------------------------------------------
;;; Run-time Initialisations
;; Initialisations which must be done at run-time, not built into eemacs:
;; Windowing system properties which must be read at run-time
;; Functions involving histories which must be read at run-time
;; -----------------------------------------------------------------------------
;;; Enable all save all histories function
(load "init-history-saving")
;; -----------------------------------------------------------------------------
;;; Ediff settings
(load "init-ediff")
;; -----------------------------------------------------------------------------
;;; Shell-mode settings
(load "init-shell")
;; -----------------------------------------------------------------------------
;;; Eshell-mode settings
;;(load "init-eshell")
;; -----------------------------------------------------------------------------
;;; GIT-Emacs: Emacs front-end for GIT repositories
(load "init-magit")
;; -----------------------------------------------------------------------------
;;; Insideous Big Brother Database
(load "init-bbdb")
;; -----------------------------------------------------------------------------
;;; gnuplot-mode
(load "init-gnuplot")
;; -----------------------------------------------------------------------------
;;; Org-mode: organiser
(load "init-org")
;; -----------------------------------------------------------------------------
;;; Wiki modes: modes for typesetting WIKI pages
(load "init-wiki")
;; -----------------------------------------------------------------------------
;;; outline-mode: outlining and folding
(load "init-outline")
;; -----------------------------------------------------------------------------
;;; Email client: Wanderlust
(load "init-wl")
;; -----------------------------------------------------------------------------
;;; wget: Asynchronous download of files
(load "init-wget")
;; -----------------------------------------------------------------------------
;;; Web-browser: w3m
(load "init-w3m")
;; -----------------------------------------------------------------------------
;;; Web-browser: general
(load "init-www")
;; -----------------------------------------------------------------------------
;;; openwith: Open files using specified application
(load "init-openwith")
;; -----------------------------------------------------------------------------
;;; oprofile: An oprofile callgraph viewer
;;(load "init-oprofile")
;; -----------------------------------------------------------------------------
;;; Tags: Initialise all things tags related
(load "init-tags")
;; -----------------------------------------------------------------------------
;;; Abbreviations
;;(autoload 'abbrev-mode "init-abbrev" "Abbrev" t)
;; -----------------------------------------------------------------------------
;;; Emms: Emacs Multimedia System
(autoload 'emms-browser "init-emms" "Emms" t)
(autoload 'emms-streams "init-emms" "Emms" t)
;; -----------------------------------------------------------------------------
;;; Dictionary and thesaurus
(load "init-dictionary")
;; -----------------------------------------------------------------------------
;;; Yet another snippets extension
;;(load "init-yasnippet")
;; -----------------------------------------------------------------------------
;;; Maxima interface
;;(load "init-imaxima")
;; -----------------------------------------------------------------------------
;;; completion-ui: Enhanced in-buffer completion packages
(load "init-completion")
;; -----------------------------------------------------------------------------
;;; Buffer selection menu
(load "init-ibuffer")
;; -----------------------------------------------------------------------------
;;; Anything: Show things that are now and have happened for selection
(load "init-anything")
;; -----------------------------------------------------------------------------
;;; ido: Interactive-do minibuffer completion packages
;;(load "init-ido")
;; -----------------------------------------------------------------------------
;;; Do Re Mi: Incremental change using arrow keys or mouse wheel
(load "init-doremi")
;; -----------------------------------------------------------------------------
;;; icicles: Enhanced minibuffer completion packages
(load "init-icicles")
;; -----------------------------------------------------------------------------
;;; E2WM
(load "init-e2wm")
;; -----------------------------------------------------------------------------
;;; Application generated customisations
(setq custom-file (expand-file-name "~/.emacs.d/custom.el"))
(load custom-file)
;; -----------------------------------------------------------------------------
;;; init.el ends here