-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.emacs
396 lines (325 loc) · 14.1 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
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
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
;; CONFIGS and CHEAT SHEETS
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; navigation
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; C-v pgdown
;; M-v pgup
;; M-> end of document
;; M-< start of document
;; C-M-a start of func
;; C-M-e end of func
;; C-M-h select func
;; C-M-u start of block ({)
;; C-M-n end of block (})
;; C-M-\ indent region
;; C-u SPC pop mark
;; M-= count lines in region
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; personal key bindings
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defun theme-dark ()
"Set dark theme"
(interactive)
(disable-theme 'whiteboard)
(load-theme 'wombat t))
(defun theme-light ()
"Set light theme"
(interactive)
(disable-theme 'wombat-ediff)
(load-theme 'whiteboard t))
(defun toggle-theme ()
"Toggle between light or dark theme"
(interactive)
(load-theme 'wombat-ediff t))
(defun figlet ()
"Replace region with figlet representation"
(interactive)
(shell-command-on-region (region-beginning) (region-end) "figlet" t t))
(defun linux-google ()
"Google region in Chrome from Linux"
(interactive)
(shell-command-on-region (region-beginning) (region-end) "linux-chrome-open.bash"))
(defun linux-copy2 ()
"Copy region to linux clipboard using x-set-selection"
(interactive)
(x-set-selection 'CLIPBOARD (buffer-substring (region-beginning) (region-end))))
(defun linux-copy ()
"Copy region to linux clipboard"
(interactive)
(shell-command-on-region (region-beginning) (region-end) "xsel-copy"))
(defun linux-paste ()
"Paste from linux clipboard"
(interactive)
(shell-command "xsel -b -o" t))
(defun mac-google ()
"Google region in Chrome from a mac"
(interactive)
(shell-command-on-region (region-beginning) (region-end) "mac-chrome-open.bash"))
(defun mac-copy ()
"Copy region to mac clipboard"
(interactive)
(shell-command-on-region (region-beginning) (region-end) "pbcopy"))
(defun mac-paste ()
"Paste region from mac clipboard"
(interactive)
(shell-command "pbpaste" t))
(load "server")
(unless (server-running-p) (server-start))
(cond
((string-equal system-type "darwin")
(progn (defalias 'google 'mac-google)
(load "server")
(unless (server-running-p) (server-start))
(global-set-key "\C-cc" 'mac-copy)
(global-set-key "\C-cv" 'mac-paste)
(setq x-alt-keysym 'meta)
(setq exec-path (append exec-path '("/usr/local/bin")))
(set-face-attribute 'default nil :family "Consolas")
(set-face-attribute 'default nil :height 130)))
((string-equal system-type "gnu/linux")
(progn (defalias 'google 'linux-google)
(global-set-key "\C-cc" 'linux-copy2)
(global-set-key "\C-cv" 'linux-paste)))
)
(global-set-key "\C-cg" 'goto-line)
(global-set-key "\C-ch" 'hl-line-mode)
(global-set-key (kbd "M-J") 'windmove-left)
(global-set-key (kbd "M-L") 'windmove-right)
(global-set-key (kbd "M-I") 'windmove-up)
(global-set-key (kbd "M-K") 'windmove-down)
(defun fontinc ()
"Increase xfce terminal font size."
(interactive)
(shell-command "xfce-term-font.bash inc"))
(defun fontdec ()
"Decrease xfce terminal font size."
(interactive)
(shell-command "xfce-term-font.bash dec"))
(global-set-key (kbd "M-+") 'fontinc)
(global-set-key (kbd "M-_") 'fontdec)
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; term
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; M-N new terminal
;; M-M toggle line/char mode
;;
;; C-x C-f /sudo::/path/to/file
;; open as root
(defun bash (buffer-name)
"Start bash terminal and rename buffer."
(interactive (list (read-string "buffer name: " "^term^")))
(term "/bin/bash")
(rename-buffer buffer-name t))
(defun ssh (host)
"ssh to a host in new term."
(interactive (list (read-string "host: ")))
(setenv "EMACS_SSH_HOST" host)
(term "sshwrap.bash")
(rename-buffer (concat "^" host "^") t))
(global-set-key (kbd "M-N") 'bash)
(eval-after-load "term"
'(progn
(term-set-escape-char ?\C-x)
(defun term-toggle-mode ()
(interactive)
(if (term-in-line-mode)
(term-char-mode)
(term-line-mode)))
(define-key term-raw-map (kbd "M-M") 'term-toggle-mode)
(global-set-key (kbd "M-M") 'term-toggle-mode)
(define-key term-raw-map (kbd "M-N") 'bash)
(define-key term-raw-map (kbd "M-J") 'windmove-left)
(define-key term-raw-map (kbd "M-L") 'windmove-right)
(define-key term-raw-map (kbd "M-I") 'windmove-up)
(define-key term-raw-map (kbd "M-K") 'windmove-down)
(define-key term-raw-map (kbd "M-+") 'fontinc)
(define-key term-raw-map (kbd "M-_") 'fontdec)
))
;; close the terminal buffer automatically on exit
(defadvice term-sentinel (around my-advice-term-sentinel (proc msg) activate)
(if (memq (process-status proc) '(signal exit))
(let ((buffer (process-buffer proc)))
ad-do-it
(kill-buffer buffer))
ad-do-it))
(defun doc-view-keys()
"Make movement keys work for doc-view mode."
(progn
(auto-revert-mode)
(define-key doc-view-mode-map (kbd "M-J")
'(lambda ()
"windmove-left for docview"
(interactive)
(windmove-left 1)))
(define-key doc-view-mode-map (kbd "M-L")
'(lambda ()
"windmove-right for docview"
(interactive)
(windmove-right 1)))
(define-key doc-view-mode-map (kbd "M-I")
'(lambda ()
"windmove-up for docview"
(interactive)
(windmove-up 1)))
(define-key doc-view-mode-map (kbd "M-K")
'(lambda ()
"windmove-down for docview"
(interactive)
(windmove-down 1)))))
(add-hook 'doc-view-mode-hook 'doc-view-keys)
(setq doc-view-continuous t)
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; cscope
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; C-c s s Find symbol.
;; C-c s d Find global definition.
;; C-c s g Find global definition (alternate binding).
;; C-c s G Find global definition without prompting.
;; C-c s c Find functions calling a function.
;; C-c s C Find called functions.
;; C-c s t Find text string.
;; C-c s e Find egrep pattern.
;; C-c s f Find a file.
;; C-c s i Find files #including a file.
;; C-c s b Display *cscope* buffer.
;; C-c s B Auto display *cscope* buffer toggle.
;; C-c s n Next symbol.
;; C-c s N Next file.
;; C-c s p Previous symbol.
;; C-c s P Previous file.
;; C-c s u Pop mark.
;;
;; C-c s a Set initial directory.
;; C-c s A Unset initial directory.
;;
;; C-c s L Create list of files to index.
;; C-c s I Create list and index.
;; C-c s E Edit list of files to index.
;; C-c s W Locate this buffer's cscope directory
;; ("W" --> "where").
;; C-c s S Locate this buffer's cscope directory.
;; (alternate binding: "S" --> "show").
;; C-c s T Locate this buffer's cscope directory.
;; (alternate binding: "T" --> "tell").
;; C-c s D Dired this buffer's directory.
(defun xcscope-key-override ()
"Override M-K for xcscope mode."
(local-set-key (kbd "M-K") 'windmove-down))
(if (file-exists-p "~/.emacs.d/xcscope.el/xcscope.el")
(progn
(load-file "~/.emacs.d/xcscope.el/xcscope.el")
(require 'xcscope)
(add-hook 'cscope-list-entry-hook 'xcscope-key-override)
(add-hook 'prog-mode-hook 'cscope-minor-mode)
(add-hook 'c-mode-common-hook 'cscope-minor-mode)
))
(if (file-exists-p "~/.emacs.d/go-mode.el")
(progn
(add-to-list 'load-path "~/.emacs.d/go-mode.el")
(autoload 'go-mode "go-mode" nil t)
(add-to-list 'auto-mode-alist '("\\.go\\'" . go-mode))
))
(if (file-exists-p "~/.emacs.d/github-markdown-api.el")
(load-file "~/.emacs.d/github-markdown-api.el"))
(defun markdown ()
(interactive)
(progn
(write-region
(with-output-to-string
(shell-command-on-region (point-min) (point-max) "/usr/local/bin/markdown" standard-output))
nil "/tmp/md.html" nil)
(find-file "/tmp/md.html")
(rename-buffer "*rendered-markdown*")
(shell-command "open -a 'Google Chrome' /tmp/md.html")))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; tabbing
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(setq-default c-basic-offset 4
c-file-style "bsd"
tab-width 4
indent-tabs-mode nil)
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; flyspell
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; (dolist (hook '(text-mode-hook))(add-hook hook (lambda () (flyspell-mode 1))))(dolist (hook '(text-mode-hook))(add-hook hook (lambda () (flyspell-buffer))))
(add-hook 'text-mode-hook 'flyspell-mode)
(add-hook 'text-mode-hook 'flyspell-buffer)
(add-hook 'prog-mode-hook 'flyspell-prog-mode)
(mapcar (lambda (mode-hook) (add-hook mode-hook 'flyspell-prog-mode))
'(c-mode-common-hook tcl-mode-hook emacs-lisp-mode-hook
ruby-mode-hook java-mode-hook))
(put 'nxml-mode 'flyspell-mode-predicate 'sgml-mode-flyspell-verify)
(setq auto-mode-alist (cons '("\\.md$" . text-mode) auto-mode-alist))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; backups
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(setq backup-directory-alist `(("." . "~/.emacs-saves")))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; appearance
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(setq column-number-mode t)
(menu-bar-mode -1)
;;(tool-bar-mode -1)
;;(scroll-bar-mode -1)
;;(mouse-wheel-mode -1)
(setq ido-enable-flex-matching t)
(setq ido-everywhere t)
(ido-mode 1)
(setq initial-scratch-message
(concat
";; _ _ _ \n"
";; | |__ ___| | | ___ ___ _ __ ___ __ _ ___ ___ \n"
";; | '_ \\ / _ \\ | |/ _ \\ / _ \\ '_ ` _ \\ / _` |/ __/ __| \n"
";; | | | | __/ | | (_) | | __/ | | | | | (_| | (__\\__ \\ \n"
";; |_| |_|\\___|_|_|\\___/ \\___|_| |_| |_|\\__,_|\\___|___/ \n"
";; \n"))
(setq inhibit-splash-screen t)
(theme-dark)
(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.
'(tooltip-mode nil)
'(inhibit-startup-screen t)
'(mouse-wheel-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.
'(ediff-current-diff-A ((((class color) (min-colors 16)) (:background "thistle1" :foreground "darkorchid4"))) t)
'(ediff-current-diff-Ancestor ((((class color) (min-colors 16)) (:background "thistle1" :foreground "darkorchid4"))) t)
'(ediff-current-diff-B ((((class color) (min-colors 16)) (:background "thistle1" :foreground "DarkOrchid4"))) t)
'(ediff-current-diff-C ((((class color) (min-colors 16)) (:background "thistle1" :foreground "Darkorchid4"))) t)
'(ediff-even-diff-Ancestor ((((class color) (min-colors 16)) (:background "lightgrey" :foreground "black"))) t)
'(ediff-even-diff-B ((((class color) (min-colors 16)) (:background "lightgrey" :foreground "black"))) t)
'(ediff-fine-diff-A ((((class color) (min-colors 16)) (:background "rosybrown1" :foreground "darkorchid4"))) t)
'(ediff-fine-diff-Ancestor ((((class color) (min-colors 16)) (:background "rosybrown1" :foreground "darkorchid4"))) t)
'(ediff-fine-diff-B ((((class color) (min-colors 16)) (:background "rosybrown1" :foreground "darkorchid4"))) t)
'(ediff-fine-diff-C ((((class color) (min-colors 16)) (:background "rosybrown1" :foreground "darkorchid4"))) t)
'(ediff-odd-diff-A ((((class color) (min-colors 16)) (:background "lightgrey" :foreground "black"))) t)
'(ediff-odd-diff-Ancestor ((((class color) (min-colors 16)) (:background "lightgrey" :foreground "black"))) t)
'(ediff-odd-diff-C ((((class color) (min-colors 16)) (:background "lightgrey" :foreground "black"))) t)
'(term-color-black ((t (:background "#242424" :foreground "#242424"))))
'(term-color-blue ((t (:background "#8ac6f2" :foreground "#8ac6f2"))))
'(term-color-cyan ((t (:background "#ccaa8f" :foreground "#ccaa8f"))))
'(term-color-green ((t (:background "#95e454" :foreground "#95e454"))))
'(term-color-magenta ((t (:background "#333366" :foreground "#333366"))))
'(term-color-red ((t (:background "#e5786d" :foreground "#e5786d"))))
'(term-color-white ((t (:background "#f6f3e8" :foreground "#f6f3e8"))))
'(term-color-yellow ((t (:background "#cae682" :foreground "#cae682")))))
(setq asm-comment-char ?\#)
(put 'upcase-region 'disabled nil)
(put 'downcase-region 'disabled nil)
;; disable super key (map it to meta so we have two meta keys)
(setq x-super-keysym 'meta)
;; OCaml
(add-to-list 'load-path "~/.emacs.d/ocaml")
(add-to-list 'auto-mode-alist '("\\.ml[iylp]?$" . caml-mode))
(autoload 'caml-mode "caml" "Major mode for editing OCaml code." t)
(autoload 'run-caml "inf-caml" "Run an inferior OCaml process." t)
(autoload 'camldebug "camldebug" "Run ocamldebug on program." t)
(add-to-list 'interpreter-mode-alist '("ocamlrun" . caml-mode))
(add-to-list 'interpreter-mode-alist '("ocaml" . caml-mode))
(require 'caml-font)