dot/tmux.conf: Half-baked configuration for tmux.
[profile] / dot / emacs
CommitLineData
502f4699 1;;; -*- mode: emacs-lisp; coding: utf-8 -*-
f617db13 2;;;
f617db13
MW
3;;; Emacs configuration file
4;;;
5;;; (c) 1996-1999 Mark Wooding
6;;;
7
8;;;----- Licensing notice ---------------------------------------------------
9;;;
10;;; This program is free software; you can redistribute it and/or modify
11;;; it under the terms of the GNU General Public License as published by
12;;; the Free Software Foundation; either version 2 of the License, or
13;;; (at your option) any later version.
14;;;
15;;; This program is distributed in the hope that it will be useful,
16;;; but WITHOUT ANY WARRANTY; without even the implied warranty of
17;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18;;; GNU General Public License for more details.
19;;;
20;;; You should have received a copy of the GNU General Public License
21;;; along with this program; if not, write to the Free Software
22;;; Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
23
24(setq load-path (nconc load-path (list "~/lib/emacs")))
25(require 'dot-emacs)
a1bf764e 26(require 'cl)
f617db13 27
6132bc01
MW
28;;;--------------------------------------------------------------------------
29;;; Some random initialisation.
f617db13
MW
30
31(setq mdw-init-window (selected-window))
32
6132bc01 33;; Load some other bits of code.
f617db13 34
400223a1
MW
35(maybe-autoload 'cc-mode "cc-mode" nil t)
36(maybe-autoload 'rexx-mode "rexx-mode" nil t)
37(maybe-autoload 'cvs-update "pcl-cvs" nil t)
38(maybe-autoload 'debian-changelog-mode "debian-changelog-mode" nil t)
39(maybe-autoload 'git-status "git" nil t)
459c9fb2
MW
40(maybe-autoload 'git-blame-mode "git-blame" nil t)
41(maybe-autoload 'stgit "stgit" nil t)
b29312d0
MW
42(maybe-autoload 'nc-timesheet-prepare "nc-timesheet" nil t nil)
43(maybe-autoload 'nc-timesheet-submit "nc-timesheet" nil t nil)
44
eac7b622
MW
45(and (library-exists-p "debian-changelog-mode")
46 (add-to-list 'auto-mode-alist
47 `(,(concat "/debian/"
48 "\\("
01a478c2
MW
49 "[" "[:lower:]" "[:digit:]" "]"
50 "[" "[:lower:]" "[:digit:]" ".+-" "]+"
eac7b622
MW
51 "\\."
52 "\\)?"
53 "changelog\\'")
54 . debian-changelog-mode)))
55
400223a1
MW
56(and (library-exists-p "vc-git")
57 (not (memq 'GIT vc-handled-backends))
8d244e27 58 (not (memq 'Git vc-handled-backends))
79ba2d35 59 (not (memq 'git vc-handled-backends))
308b0b57 60 (setq vc-handled-backends (cons 'GIT vc-handled-backends)))
f617db13 61
0f2aab7b 62(setq magit-log-cutoff-length 512)
2285e371
MW
63(defun mdw-magit-try-load-config-extensions ()
64 (trap (magit-load-config-extensions)))
65(add-hook 'magit-mode-hook 'mdw-magit-try-load-config-extensions)
0f2aab7b 66
ab9e097f
MW
67(trap (or mdw-fast-startup (require 'p4)))
68
c7a8da49 69(trap (or mdw-fast-startup (require 'tex-site)))
f617db13 70
c07e3e33 71(trap (or mdw-fast-startup t (semantic-load-enable-code-helpers)))
33abafd2 72(setq semanticdb-default-save-directory "~/.emacs.d/semanticdb/")
e74ad275
MW
73(eval-after-load "senator"
74 '(setq isearch-mode-hook
75 (remq 'senator-isearch-mode-hook isearch-mode-hook)
76 isearch-mode-end-hook
77 (remq 'senator-isearch-mode-hook isearch-mode-end-hook)))
75bd2d66 78
6132bc01 79;; Skeleton stuff.
f617db13 80
c7a8da49 81(trap (or mdw-fast-startup (require 'skel-init)))
f617db13 82
6132bc01 83;; Window system-dependent things.
f617db13
MW
84
85(require 'paren)
86(trap (show-paren-mode t))
e357ccfe 87(or window-system (>= emacs-major-version 22) (menu-bar-mode -1))
f617db13 88
c6fe19d5
MW
89;; Multiple cursors.
90
91(setq load-path (nconc load-path (list "~/lib/emacs/multiple-cursors/")))
92(global-set-key [?\C-c ?r] 'mdw-multiple-cursors-keymap)
93(autoload 'mdw-multiple-cursors-keymap "mdw-multiple-cursors.el"
94 "A keymap for Magnar Sveen's awesome multiple-cursors." nil 'keymap)
95
36db1ea7
MW
96;; Rust mode.
97
98(setq load-path (nconc load-path (list "~/lib/emacs/rust-mode/")))
99(autoload 'rust-mode "rust-mode" nil t)
100(add-to-list 'auto-mode-alist '("\\.rs\\'" . rust-mode))
101
6132bc01 102;; Temporary directory handling.
f617db13
MW
103
104(defun mdw-check-dir-exists (dir)
105 (and dir
106 (file-directory-p dir)
107 dir))
108(setq tmpdir (or (mdw-check-dir-exists (getenv "TMPDIR"))
109 (mdw-check-dir-exists (format "/tmp/%s" (user-login-name)))
110 "/tmp"))
111
6132bc01 112;; Emacs server behaviour.
f617db13 113
ccc2e1fa
MW
114(and (or window-system (>= emacs-major-version 23))
115 (progn (setq server-temp-file-regexp (concat "^" tmpdir "\\|/draft$")
116259a9 116 edit-server-new-frame nil
ccc2e1fa 117 gnuserv-frame t)
116259a9
MW
118 (trap (server-start))
119 (trap (progn
120 (require 'edit-server)
955a327c
MW
121 (edit-server-start)
122 (let ((edit (get-process "edit-server")))
123 (and edit
124 (set-process-query-on-exit-flag edit nil)))))))
f617db13 125
6132bc01 126;; Control backup behaviour.
f617db13
MW
127
128(setq backup-by-copying nil)
129(setq backup-by-copying-when-linked t)
130(setq backup-by-copying-when-mismatch t)
131
2ae647c4
MW
132(setq mdw-backup-disable-regexps
133 '("/\\.git/COMMIT_EDITMSG$"
17fca674
MW
134 "/\\.stgit\\(-edit\\.txt\\|msg\\.txt\\|\\.msg\\)$"
135 "^/tmp/" "^/var/tmp/"))
2ae647c4 136
6132bc01 137;; Safe variables.
20d4403c
MW
138
139(setq safe-local-variable-values
140 '((make-backup-files . nil)))
141
6132bc01 142;; Calculator fiddling.
f617db13
MW
143
144(setq calc-settings-file "~/.emacs-calc")
145(load calc-settings-file)
146
147;; ---- Some mail and news configuration ---
148
c17fdbff 149(setq mail-from-style 'angles
c60cbbe8
MW
150 mail-signature t
151 mail-yank-prefix "> "
152 mail-archive-file-name "~/Mail/sent"
153 compose-mail-user-agent-warnings nil)
f617db13
MW
154
155(setq rmail-display-summary t)
156(setq rmail-file-name "~/Mail/rmail")
157
03f7e611
MW
158(setq sendmail-program "~/bin/sendmail-hack"
159 send-mail-function 'sendmail-send-it
160 mail-interactive t
161 sendmail-error-reporting-interactive '("-odb" "-oee"))
a3bdb4d9 162
cb1389c0
MW
163(setq mail-user-agent 'message-user-agent
164 read-mail-command 'gnus)
728fe976
MW
165(setq message-signature-separator "^-- \\(\\|\\[mdw\\]\\)$"
166 message-yank-prefix "> "
167 message-yank-cited-prefix "> "
98ed7cc2 168 message-send-mail-function 'message-send-mail-with-sendmail
03f7e611
MW
169 message-interactive t
170 message-sendmail-extra-arguments '("-odb" "-oee")
f646ea77 171 message-sendmail-envelope-from 'header
728fe976
MW
172 message-indent-citation-function '(message-indent-citation
173 mdw-trim-spaces-after-citing))
174
175(defun mdw-trim-spaces-after-citing ()
176 (save-excursion
177 (save-restriction
178 (narrow-to-region (point) (mark t))
179 (while (re-search-forward "^> +$" nil t)
180 (replace-match ">")))))
a3bdb4d9
MW
181
182(and (fboundp 'turn-on-gnus-dired-mode)
183 (not mdw-fast-startup)
184 (add-hook 'dired-mode-hook 'turn-on-gnus-dired-mode))
185
186(or mdw-fast-startup
98a0bc3f 187 (trap (bbdb-initialize 'gnus 'sendmail 'message)))
a3bdb4d9
MW
188(setq bbdb-north-american-phone-numbers-p nil)
189
6132bc01 190;; Customization.
78100945
MW
191
192(setq custom-file "~/.emacs-custom")
193(trap (load custom-file))
194
195(trap (load "~/.emacs-local"))
196
6132bc01 197;; Internationalization twiddling.
f617db13
MW
198
199(trap
bc30f5c4 200 ;; Have top-bit-set characters work properly in terminals.
f617db13
MW
201 (let ((im (current-input-mode)))
202 (apply #'set-input-mode
bc30f5c4 203 (nconc (list (nth 0 im) (nth 1 im) 0) (nthcdr 3 im)))))
f617db13 204
6132bc01 205;; Don't disable any commands.
f617db13
MW
206
207(mapatoms #'(lambda (sym) (put sym 'disabled nil)))
208
6132bc01 209;; Split a wide window.
f617db13
MW
210
211(mdw-divvy-window)
212
6132bc01 213;; Postscript printing.
1a4d7e7d
MW
214
215(setq ps-paper-type 'a4
216 ps-print-color-p nil
217 ps-landscape-mode t
2c84dee2 218 ps-number-of-columns 2
1a4d7e7d 219 ps-font-family 'Courier
2c84dee2 220 ps-font-size 6.5)
1a4d7e7d 221
6132bc01 222;; Splash screen stuff.
1a4d7e7d
MW
223
224(or window-system
225 (setq inhibit-splash-screen t
226 inhibit-startup-message t))
227
6132bc01 228;; Other goodies.
f617db13 229
89a72209 230(trap (resize-minibuffer-mode 1)) ;Make minibuffer grow dynamically
f617db13 231(auto-compression-mode 1) ;Enable automatic compression
cf6c4653
MW
232(setq enable-local-variables :safe
233 enable-local-eval nil)
f617db13 234(setq dabbrev-case-replace nil) ;Retain case when completing
e2363e48 235(setq linum-format "%7d ")
f617db13 236(setq next-line-add-newlines nil) ;Don't add weird newlines
9a60965e 237(setq split-height-threshold nil) ;Reuse windows where sensible
9aea0679
MW
238(setq display-buffer-reuse-frames nil ;Don't confuse me by showing buffers
239 iswitchb-default-method 'samewindow) ;in other random frames
f617db13 240(setq dired-deletion-confirmer ;Make deletion easier in dired
f3f0c0a0
MW
241 (symbol-function 'y-or-n-p)
242 dired-listing-switches "-alF" ;Do `ls -F' things in dired windows
243 wdired-allow-to-change-permissions 'advanced)
85dc07c7 244(setq read-quoted-char-radix 16) ;C-q HEX-STUFF [RET]
f617db13
MW
245(setq case-fold-file-names nil) ;Don't translate file names (grr...)
246(setq scroll-step 5) ;Don't scroll too much at a time
247(setq-default fill-column 77) ;I use rather narrow windows
248(setq-default comment-column 40) ;Set a standard comment column
a2f12a94
MW
249(setq-default truncate-partial-width-windows nil
250 truncate-lines t)
3459d2cb
MW
251(setq default-indicate-empty-lines t)
252(setq whitespace-style
11a169c1 253 '(trailing space-before-tab space-after-tab empty indentation face))
4d4f9ad1
MW
254(setq woman-use-own-frame nil ;Keep man pages somewhere sensible
255 woman-fill-column 72) ;Right margin position.
f617db13
MW
256(setq diff-switches "-u" ;I like reading unified diffs
257 cvs-diff-flags (list diff-switches))
258(setq echo-keystrokes 10) ;Long delay before keystrokes echo
259(setq ange-ftp-ftp-program-name "pftp") ;Use passive FTP
260(setq find-ls-option ;Build file lists efficiently
261 '("-print0 | xargs -0r ls -ld" . "ld"))
6006518e 262(setq bookmark-save-flag 0) ;Save bookmarks automatically
91dba4e4 263(setq x-gtk-file-dialog-help-text nil)
e34a133f 264(setq Info-fontify-maximum-menu-size 100000)
3af826d8 265(setq set-mark-command-repeat-pop t)
38ddb67e 266(setq password-cache-expiry nil)
9de66169
MW
267(setq-default proced-filter 'all
268 proced-sort 'user)
68b2e9e6 269(setq ispell-program-name "aspell-hack"
cbffcf2b
MW
270 ispell-local-dictionary "en_GB-ize-w_accents"
271 flyspell-default-dictionary "en_GB-ize-w_accents"
30acc372
MW
272 ispell-local-dictionary-alist
273 '(("en_GB-ize-w_accents" "[[:alpha:]]" "[^[:alpha:]]" "'" t
274 ("-d" "en_GB-ize-w_accents") nil utf-8))
689009c0 275 ispell-silently-savep t)
f617db13
MW
276(trap
277 (require 'uniquify)
278 (setq uniquify-buffer-name-style 'post-forward-angle-brackets)
279 (setq uniquify-after-kill-buffer-p t))
280(transient-mark-mode t)
9958af68 281(setq mark-even-if-inactive t)
f617db13
MW
282(trap
283 (tooltip-mode 0)
284 (tool-bar-mode 0))
4ae85887 285(trap (or mdw-fast-startup (global-auto-revert-mode t)))
f617db13
MW
286(setq psgml-html-build-new-buffer nil)
287
3d6a7d27
MW
288(defvar mdw-black-background t)
289
5de5db48
MW
290(eval-after-load "outline"
291 '(progn
292 (trap (require 'foldout))
293 (define-key outline-mode-prefix-map [?\C-r] 'reveal-mode)
294 (define-key outline-mode-prefix-map [?\C--] 'mdw-outline-collapse-all)))
8fd1960c 295
56becc91
MW
296(setq imenu-auto-rescan t
297 imenu-auto-rescan-maxout (* 128 1024)
298 imenu-max-items 60)
299
f141fe0f
MW
300(setq cltl2-root-url (mdw-config 'cltl-url))
301(setq common-lisp-hyperspec-root (mdw-config 'hyperspec-url))
302
25b77072
MW
303(setq rfcview-rfc-location-pattern
304 "/ftp@mirror.distorted.org.uk:/pub/mirrors/rfc/rfc%s.txt"
305 rfcview-std-location-pattern
306 "/ftp@mirror.distorted.org.uk:/pub/mirrors/rfc/std/std%s.txt"
307 rfcview-index-location
308 "/ftp@mirror.distorted.org.uk:/pub/mirrors/rfc/rfc-index.txt")
309
6132bc01
MW
310;;;--------------------------------------------------------------------------
311;;; W3 and URL fetching stuff.
f141fe0f 312
45d17e24 313(let ((proxy (mdw-config 'http-proxy)))
f141fe0f
MW
314 (setq url-proxy-services
315 `(("http" . ,proxy)
316 ("ftp" . ,proxy)
317 ("gopher" . ,proxy))))
318(setq url-cookie-untrusted-urls '("."))
852cd5fb 319
a203fba8 320(setq browse-url-browser-function (mdw-good-url-browser)
ed5e20a5 321 browse-url-generic-program "mdw-chrome"
a0d16e44 322 browse-url-mozilla-program "mdw-iceweasel")
9b72460c 323
3d6231da
MW
324(setq w3m-default-display-inline-images t
325 w3m-use-cookies t)
9b72460c 326
b0ef6a66
MW
327(eval-after-load "w3m"
328 '(let ((entries '(("application/pdf" "\\.pdf\\'" ("evince" file) nil)
329 ("application/x-pdf" "\\.pdf\\'" ("evince" file) nil))))
330 (dolist (e entries)
331 (setq w3m-content-type-alist
332 (cons e (remove* (car e) w3m-content-type-alist
333 :key #'car :test #'string=))))))
334
f141fe0f
MW
335(setq w3-do-incremental-display t
336 w3-use-menus '(file edit view go bookmark options
337 buffers style search emacs nil help)
338 w3-display-inline-image t
339 w3-keybinding 'info)
f617db13 340
6132bc01
MW
341;;;--------------------------------------------------------------------------
342;;; Calendar configuration.
f617db13 343
ea09c6cb
MW
344(setq diary-file "~/etc/diary")
345
6132bc01 346;; Trivial stuff for the sunrise/sunset calculations.
f617db13
MW
347
348(setq calendar-latitude 52.2)
349(setq calendar-longitude 0.1)
350(setq calendar-location-name "Cambridge, UK")
351
6132bc01 352;; Holidays.
a1293ade
MW
353
354(and (not mdw-fast-startup)
355 (trap
356 (require 'ew-hols)
357 (setq other-holidays (append english-and-welsh-bank-holidays
358 other-holidays))))
359
6132bc01 360;; Date format fiddling.
f617db13
MW
361
362(setq european-calendar-style t)
363
364(setq diary-date-forms '((day "[-/]" month "[^-/0-9]")
365 (day " *" monthname "[ \t]*\\(\^M\\|\n\\)")
366 (backup day " *" monthname "\\W+\\<[^*0-9]")
367 (day "[-/]" month "[-/]" year "[^0-9]")
368 (day " *" monthname " *" year "[^0-9]")
369 (year "[-/]" month "[-/]" day "[^0-9]")
370 (dayname "\\W")))
371
6132bc01 372;; Fancy diary handling.
f617db13
MW
373
374(add-hook 'diary-display-hook 'fancy-diary-display)
375(setq diary-list-include-blanks t)
376(add-hook 'list-diary-entries-hook 'sort-diary-entries t)
377(add-hook 'list-diary-entries-hook 'include-other-diary-files)
378(add-hook 'mark-diary-entries-hook 'mark-included-diary-files)
379
6132bc01 380;; Appointment management.
f617db13
MW
381
382(add-hook 'diary-hook 'appt-make-list)
383(setq appt-issue-message t)
384(setq appt-display-interval 3)
385(setq appt-message-warning-time 10)
386
6132bc01 387;; Org-mode agenda.
2d6b9d95 388
e3f433a2
MW
389(setq org-agenda-include-diary t
390 org-tags-column -77)
2d6b9d95 391
6132bc01 392;; Cosmetic stuff.
f617db13 393
b7a7bc64
MW
394(setq calendar-view-diary-initially-flag t
395 calendar-view-holidays-initially-flag t)
396
f617db13
MW
397(setq display-time-24hr-format t)
398(display-time)
dca9e3ae 399(column-number-mode 1)
f8faccda 400(trap (if window-system (calendar)))
f617db13 401
6132bc01
MW
402;;;--------------------------------------------------------------------------
403;;; MailCrypt.
f617db13 404
6132bc01 405;; Define more mode hooks for MailCrypt.
f617db13
MW
406
407(setq mdw-mc-modes
408 '((mdwmail-mode (encrypt . mdwmail-mc-encrypt)
409 (sign . mdwmail-mc-sign))))
410
6132bc01 411;; Load the MailCrypt support.
f617db13
MW
412
413(trap
414 (and (string-match "linux" (symbol-name system-type))
c7a8da49 415 (not mdw-fast-startup)
f617db13
MW
416 (progn (require 'mailcrypt-init)
417 (require 'mailcrypt)
418 (setq mc-default-scheme 'mc-scheme-gpg)
419 (setq mc-pgp-user-id "mdw-nsict-pgp")
420 (setq mc-gpg-user-id "mdw-nsict-gpg")
421 (setq mc-modes-alist (append mc-modes-alist mdw-mc-modes))
422 (setq mc-pgp-always-sign t)
423 (setq mc-gpg-always-sign t)
424 (setq mc-always-replace 'never)
425 (setq mc-passwd-timeout 3600)
426 (setq mc-temp-directory tmpdir)
427 (setq mc-modes-alist (append mc-modes-alist mdw-mc-modes))
428 (define-key mc-write-mode-map "\C-c/S" 'mc-sign-region)
429 (define-key mc-write-mode-map "\C-c/E" 'mc-encrypt-region)
430 (add-hook 'text-mode-hook 'mc-install-write-mode))))
431
6132bc01
MW
432;;;--------------------------------------------------------------------------
433;;; Other common declarations.
f617db13 434
6132bc01 435;; Default frame size.
f617db13
MW
436
437(setq default-frame-alist
861e478a
MW
438 `((width . ,(if (>= emacs-major-version 21) 77 78))
439 (height . 33)
440 (vertical-scroll-bars . right)
441 (cursor-type . bar)
442 (cursor-blink . t)
443 (left-fringe . 5)
444 (right-fringe . 5)
445 (scroll-bar-width . 15)
e357ccfe
MW
446 (tool-bar-lines . 0)
447 (menu-bar-lines . 1)
861e478a
MW
448 (cursor-color . "red")
449 (background-mode . ,(if mdw-black-background 'dark 'light)))
e357ccfe
MW
450 initial-frame-alist
451 `((width . ,(if (>= emacs-major-version 21) 77 78))
452 (menu-bar-lines . ,(if window-system 1 0)))
861e478a 453 window-system-default-frame-alist
2dd9081f
MW
454 '((pm (font . "-os2-System VIO-medium-r-normal--*-40-*-*-m-*-cp850")
455 (menu-font . "8.Helv")
456 (background-color . "lightgrey"))
33fef33f 457 (w32 (font . "fixed613 10")
48c107b0
MW
458 (background-color . "black")
459 (foreground-color . "white"))
2dd9081f 460 (nil (menu-bar-lines . 0))))
f617db13 461
6132bc01 462;; Other frame fiddling.
f617db13
MW
463
464(setq frame-title-format '("" invocation-name "@" system-name ": %b"))
465
6132bc01 466;; Global keymap changes.
f617db13
MW
467
468(trap
f110f932
MW
469 (windmove-default-keybindings))
470(setq windmove-wrap-around t)
f617db13 471(trap (iswitchb-mode))
f9d83bff 472(progn
a1b01eb3
MW
473 (global-set-key [?\e ?\e] 'mdw-wrong)
474 (global-set-key [?\e ?\C-\] ?\C-\]] 'keyboard-escape-quit)
f9d83bff
MW
475 (global-set-key [?\C-x ?w left] 'windmove-left)
476 (global-set-key [?\C-x ?w ?h] 'windmove-left)
477 (global-set-key [?\C-x ?w up] 'windmove-up)
478 (global-set-key [?\C-x ?w ?k] 'windmove-up)
479 (global-set-key [?\C-x ?w down] 'windmove-down)
480 (global-set-key [?\C-x ?w ?j] 'windmove-down)
481 (global-set-key [?\C-x ?w right] 'windmove-right)
482 (global-set-key [?\C-x ?w ?l] 'windmove-right)
483 (global-set-key [?\C-x ?g ?l] 'org-store-link)
484 (global-set-key [?\C-x ?g ?a] 'org-agenda)
485 (global-set-key [?\C-x ?g ?b] 'org-iswitchb)
486 (global-set-key [?\C-x ?t ?i] 'timeclock-in)
487 (global-set-key [?\C-x ?t ?c] 'timeclock-change)
488 (global-set-key [?\C-x ?t ?o] 'timeclock-out)
489 (global-set-key [?\C-x ?t ?r] 'timeclock-reread-log)
490 (global-set-key [?\C-x ?t ?w] 'timeclock-workday-remaining-string)
491 (global-set-key [?\C-x ?t ?s] 'timeclock-status-string)
492 (global-set-key [?\C-x ?t ?p] 'nc-timesheet-prepare)
493 (global-set-key [?\C-x ?t ?\C-m] 'nc-timesheet-submit)
3ba0b777 494 (global-set-key [?\C-x ?3] 'mdw-split-window-horizontally)
f9d83bff
MW
495 (global-set-key [?\M-#] 'calc-dispatch)
496 (global-set-key [?\C-x ?/] 'auto-fill-mode)
497 (global-set-key [?\C-x ?w ?d] 'mdw-divvy-window)
498 (global-set-key [insertchar] 'overwrite-mode)
499 (global-set-key [?\C-x ?\C-n] 'skel-create-file)
500 (global-set-key [?\C-x ?4 ?n] 'skel-create-file-other-window)
501 (global-set-key [?\C-x ?5 ?n] 'skel-create-file-other-frame)
502 (global-set-key [delete] 'delete-char)
503 (global-set-key [?\M-q] 'mdw-fill-paragraph)
504 (global-set-key [?\C-h ?\C-m] 'manual-entry)
505 (global-set-key [C-M-backspace] 'backward-kill-sexp)
506 (global-set-key [mode-line C-mouse-1] 'mouse-tear-off-window)
507 (global-set-key [vertical-scroll-bar C-down-mouse-1]
508 'mouse-drag-vertical-line)
509 (global-set-key [vertical-scroll-bar C-mouse-1]
510 #'(lambda () (interactive)))
56becc91 511 (global-set-key [M-S-mouse-3] 'imenu)
f9d83bff 512 (global-set-key [XF86WakeUp] "")
a41fc1c8
MW
513 (global-set-key [?\C-c ?d ?w] 'devhelp-word-at-point)
514 (global-set-key [?\C-c ?d ?a] 'devhelp-assistant-word-at-point)
f3674a83 515 (global-set-key [f11] 'mdw-toggle-full-screen)
f9d83bff
MW
516 (and (not mdw-fast-startup) (fboundp 'hippie-expand)
517 (global-set-key [?\M-/] 'hippie-expand)))
f617db13 518
cadc9736
MW
519(eval-after-load "dired"
520 '(progn
8cb828d5
MW
521 (or (lookup-key dired-mode-map [?\C-x ?\C-q])
522 (define-key dired-mode-map [?\C-x ?\C-q]
523 'wdired-change-to-wdired-mode))
d9d0aed3 524 (trap (require 'dired-x))
8cb828d5
MW
525 (and (fboundp 'dired-do-relsymlink)
526 (define-key dired-mode-map [?\C-c ?\C-s] 'dired-do-relsymlink))))
cadc9736 527
16fe7c41
MW
528(add-hook 'org-mode-hook
529 #'(lambda () (mdw-clobber-evil-keymap org-mode-map)))
530(add-hook 'org-agenda-mode-hook
531 #'(lambda () (mdw-clobber-evil-keymap org-agenda-mode-map)))
f351e828 532(or mdw-fast-startup
f6cd49f1
MW
533 (trap (progn
534 (org-remember-insinuate)
4b2b71b0 535 (global-set-key [?\C-c ?o ?r] 'org-remember))))
4849ea18 536
9b63bcd2
MW
537;; Minor mode listing
538
539(setq minor-mode-alist
540 (mdw-uniquify-alist '((reveal-mode (hs-minor-mode
541 " hs/r"
542 (global-reveal-mode
543 "" " Reveal")))
544 (hs-minor-mode (reveal-mode "" " hs"))
545 (abbrev-mode "")
546 (gtags-mode ""))
547 minor-mode-alist))
548
6132bc01 549;; Recognising types of files.
f617db13
MW
550
551(setq auto-mode-alist
7c061a6f 552 (append `(("\\.p[lm]$" . cperl-mode)
f617db13
MW
553 ("\\.m$" . objc-mode)
554 ("\\.mxd$" . c-mode)
e6cb5770 555 ("\\.cs$" . csharp-mode)
07965a39 556 ("\\.go$" . go-mode)
133cf81d 557 ("\\.org$" . org-mode)
10ac316c 558 ("\\.make$" . makefile-mode)
05f15fd7 559 ("\\.mk?d$" . markdown-mode)
f617db13
MW
560 ;; ("/[ch]/" . c-mode)
561 (,(concat "/\\("
562 "\\.stgit\\.msg" "\\|"
03372583 563 "\\.topmsg" "\\|"
f617db13
MW
564 "\\.git/COMMIT_EDITMSG" "\\|"
565 "svn-commit\\.tmp" "\\|"
566 "svk-commit[^/.]*\\.tmp"
567 "\\)$")
568 . text-mode)
569 (,(concat "^" tmpdir "/\\("
570 "svk-commit[^/.]*\\.tmp" "\\|"
571 "gitci\\.[^/.]*" "\\|"
572 "cvs[^/.]\\{6\\}" "\\|"
400223a1 573 "quilt_header\.[^/.]\\{6\\}"
f617db13
MW
574 "\\)$")
575 . text-mode)
576 ("\\.calc?$" . apcalc-mode)
577 ("/src/linux/.*\\.\\(c\\|h\\|cc\\)$" . linux-c-mode)
578 ("/\\(s\\|sh\\)/" . arm-assembler-mode)
579 ("\\.\\(cmd\\|exec\\|rexx\\)$" . rexx-mode)
580 ("\\.st$" . smalltalk-mode)
1e52f579
MW
581 ("\\.msgs$" . messages-mode)
582 ("/all-cmds\\.in$" . cpp-messages-mode)
f617db13
MW
583 ("\\.\\(tex\\|dtx\\)$" . latex-mode)
584 ("\\.gc$" . haskell.-mode)
585 (,(concat "^" (getenv "HOME") "/News/") . mdwmail-mode)
870778ff 586 (,(concat "^" tmpdir "/\\(SLRN\\|snd\\|pico\\|mutt\\)")
f617db13
MW
587 . mdwmail-mode))
588 auto-mode-alist))
589
27cb4215 590(setq interpreter-mode-alist
8b064239 591 (append `(("runlisp" . lisp-mode)
9a60965e 592 ("@BASH@" . sh-mode)
8b064239 593 ("@PYTHON@" . python-mode)
7c061a6f 594 ("@PERL@" . cperl-mode)
cf7fb3e1 595 ("perl" . cperl-mode)
8b064239 596 ("@TCLSH@" . tcl-mode)
6905514a 597 ("@WISH@" . tcl-mode)
cf7fb3e1
MW
598 ("tclsh" . tcl-mode)
599 ("wish" . tcl-mode))
27cb4215
MW
600 interpreter-mode-alist))
601
f617db13
MW
602(setq completion-ignored-extensions
603 (append `(".hc" ".hi") completion-ignored-extensions))
298fab5b
MW
604(dolist (dir (remove-if-not (lambda (ext)
605 (= (aref ext (- (length ext) 1)) ?/))
606 completion-ignored-extensions))
607 (if (/= (aref dir 0) ?/)
608 (setq completion-ignored-extensions
609 (cons (concat "/" dir)
610 (remove dir completion-ignored-extensions)))))
f617db13 611
6132bc01 612;; Some common local definitions.
f617db13
MW
613
614(make-variable-buffer-local 'mdw-auto-indent)
615
32194bba
MW
616(mapc (lambda (hook) (add-hook hook 'mdw-misc-mode-config))
617 '(c-mode-hook c++-mode-hook objc-mode-hook java-mode-hook
ad305d7e 618 csharp-mode-hook perl-mode-hook cperl-mode-hook dylan-mode-hook
32194bba 619 python-mode-hook pyrec-mode-hook icon-mode-hook awk-mode-hook
c24a0acd
MW
620 tcl-mode-hook go-mode-hook js-mode-hook javascript-mode-hook
621 conf-mode-hook m4-mode-hook autoconf-mode-hook autotest-mode-hook
81fb08fc 622 a68-mode-hook a68-mode-hooks asm-mode-hook fsharp-mode-hook
36db1ea7 623 scala-mode-hook rust-mode-hook TeX-mode-hook LaTeX-mode-hook
32194bba
MW
624 TeXinfo-mode-hook tex-mode-hook latex-mode-hook
625 texinfo-mode-hook emacs-lisp-mode-hook scheme-mode-hook
626 lisp-mode-hook lisp-interaction-mode-hook makefile-mode-hook
627 inferior-lisp-mode-hook slime-repl-mode-hook
628 sml-mode-hook haskell-mode-hook erlang-mode-hook
629 smalltalk-mode-hook rexx-mode-hook
630 arm-assembler-mode-hook))
f617db13
MW
631
632(global-font-lock-mode t)
f617db13 633
6132bc01
MW
634;;;--------------------------------------------------------------------------
635;;; Rootly editingness.
f617db13
MW
636
637(eval-after-load "tramp"
ae7460d4 638 '(let ((fix-args (if (mdw-version-< tramp-version "2.1")
507ebf80 639 #'append #'list)))
f617db13
MW
640 (setq tramp-methods
641 (mdw-uniquify-alist
642 `(("become"
643 (tramp-connection-function tramp-open-connection-su)
644 (tramp-remote-sh "/bin/sh")
645 (tramp-login-program "become")
646 (tramp-copy-program nil)
647 (tramp-copy-args nil)
648 (tramp-copy-keep-date-arg nil)
ae7460d4 649 (tramp-login-args ,(funcall fix-args `("TERM=dumb" "%u"))))
f617db13
MW
650 ("really"
651 (tramp-connection-function tramp-open-connection-su)
652 (tramp-login-program "really")
ae7460d4
MW
653 (tramp-login-args ,(funcall fix-args
654 `("-u" "%u")
655 `("--")
656 `("env" "TERM=dumb" "/bin/sh")))
f617db13
MW
657 (tramp-copy-program nil)
658 (tramp-copy-args nil)
659 (tramp-copy-keep-date-arg nil)
660 (tramp-remote-sh "/bin/sh"))
661 ,@tramp-methods)))
f617db13 662 (setq tramp-default-method "ssh")
415c9a27
MW
663 (let ((rootlyness (cond ((executable-find "really") "really")
664 ((executable-find "become") "become")
665 ((executable-find "sudo") "sudo")
ac667d04
MW
666 (t "su")))
667 (this-host (concat "\\`\\(localhost\\|"
668 (system-name) "\\|\\)\\'"))
669 (this-user (concat "\\`\\(" (user-login-name) "\\|"
670 (user-real-login-name) "\\|\\)\\'")))
415c9a27 671 (setq tramp-default-method-alist
ac667d04
MW
672 `((,this-host nil ,rootlyness)
673 (nil ,this-user "ssh")
674 (nil "." ,rootlyness)))
675 (setq tramp-default-proxies-alist
676 `((,this-host nil nil)
677 (nil "." "/ssh:%h:"))))))
f617db13 678
6132bc01
MW
679;;;--------------------------------------------------------------------------
680;;; General fontification.
f617db13 681
6132bc01 682;; Configure lazy fontification.
f617db13 683
f29cc9b2
MW
684(and (fboundp 'lazy-lock-mode)
685 (setq font-lock-support-mode 'lazy-lock-mode))
f617db13 686; (setq lazy-lock-defer-contextually t)
f9d83bff
MW
687(setq lazy-lock-defer-time nil
688 font-lock-maximum-decoration 3
689 lazy-lock-minimum-size 0
690 lazy-lock-stealth-time 5
691 lazy-lock-stealth-lines 100
692 lazy-lock-stealth-verbose t)
f617db13 693
f9d83bff
MW
694(progn
695 (add-hook 'c-mode-hook 'mdw-fontify-c-and-c++ t)
696 (add-hook 'objc-mode-hook 'mdw-fontify-c-and-c++ t)
697 (add-hook 'c++-mode-hook 'mdw-fontify-c-and-c++ t)
698 (add-hook 'linux-c-mode-hook #'(lambda () (setq c-basic-offset 8)))
699 (add-hook 'asm-mode-hook 'mdw-fontify-asm t)
07965a39 700 (add-hook 'go-mode-hook 'mdw-fontify-go t)
36db1ea7 701 (add-hook 'rust-mode-hook 'mdw-fontify-rust t)
f617db13 702
f9d83bff 703 (add-hook 'icon-mode-hook 'mdw-fontify-icon t)
f617db13 704
f9d83bff
MW
705 (add-hook 'apcalc-mode-hook 'mdw-misc-mode-config t)
706 (add-hook 'apcalc-mode-hook 'mdw-fontify-apcalc t)
cc1980e1 707
f9d83bff 708 (add-hook 'java-mode-hook 'mdw-fontify-java t)
52bcde59 709 (add-hook 'scala-mode-hook 'mdw-fontify-scala t)
61d63206 710 (add-hook 'js-mode-hook 'mdw-fontify-javascript t)
f9d83bff 711 (add-hook 'csharp-mode-hook 'mdw-fontify-csharp t)
81fb08fc
MW
712 (add-hook 'fsharp-mode-hook 'mdw-fontify-fsharp t)
713 (add-hook 'inferior-fsharp-mode-hooks 'mdw-fontify-inferior-fsharp t)
f617db13 714
f9d83bff 715 (add-hook 'awk-mode-hook 'mdw-fontify-awk t)
f617db13 716
f9d83bff
MW
717 (add-hook 'perl-mode-hook 'mdw-fontify-perl t)
718 (add-hook 'cperl-mode-hook 'mdw-fontify-perl t))
f617db13 719
f9d83bff
MW
720(progn
721 (setq-default py-indent-offset 2
85e430d4 722 python-indent 2
f9d83bff
MW
723 py-python-command-args
724 `("-i" "-colors" ,(if mdw-black-background
725 "Linux" "LightBG")))
726 (add-hook 'python-mode-hook 'mdw-fontify-python t)
727 (add-hook 'pyrex-mode-hook 'mdw-fontify-pyrex t))
f617db13
MW
728
729(setq-default tcl-indent-level 2)
730(add-hook 'tcl-mode-hook 'mdw-fontify-tcl t)
731
732(add-hook 'rexx-mode-hook 'mdw-fontify-rexx t)
733
f9d83bff
MW
734(setq sml-nested-if-indent t
735 sml-case-indent nil
736 sml-indent-level 4
737 sml-type-of-indent nil)
f617db13
MW
738(add-hook 'sml-mode-hook 'mdw-fontify-sml t)
739
740(add-hook 'haskell-mode-hook 'mdw-fontify-haskell t)
741(setq-default haskell-indent-offset 2)
742
2ded9493
MW
743(add-hook 'erlang-mode-hook 'mdw-fontify-erlang t)
744
f617db13
MW
745(add-hook 'texinfo-mode-hook 'mdw-fontify-texinfo t)
746(add-hook 'TeXinfo-mode-hook 'mdw-fontify-texinfo t)
747
748(setq LaTeX-table-label "tbl:")
f617db13
MW
749(setq TeX-auto-untabify nil)
750(add-hook 'TeX-mode-hook 'mdw-fontify-tex t)
751(add-hook 'tex-mode-hook 'mdw-fontify-tex t)
752(add-hook 'LaTeX-mode-hook 'mdw-fontify-tex t)
753(add-hook 'latex-mode-hook 'mdw-fontify-tex t)
754
755(add-hook 'sh-mode-hook #'mdw-setup-sh-script-mode)
ec007bea 756(add-hook 'autoconf-mode-hook #'mdw-setup-m4)
32194bba 757(add-hook 'autotest-mode-hook #'mdw-setup-m4)
ec007bea 758(add-hook 'm4-mode-hook #'mdw-setup-m4)
f617db13
MW
759
760(add-hook 'smalltalk-mode-hook 'mdw-fontify-smalltalk t)
761(add-hook 'smalltalk-mode-hook 'mdw-setup-smalltalk t)
762
7fce54c3
MW
763(add-hook 'a68-mode-hook 'mdw-fontify-algol-68 t)
764(add-hook 'a68-mode-hooks 'mdw-fontify-algol-68 t)
ad305d7e
MW
765(add-hook 'dylan-mode-hook 'mdw-fontify-dylan t)
766
f9d83bff
MW
767(progn
768 (add-hook 'emacs-lisp-mode-hook 'mdw-fontify-lispy t)
769 (add-hook 'scheme-mode-hook 'mdw-fontify-lispy t)
770 (add-hook 'lisp-mode-hook 'mdw-fontify-lispy t)
771 (add-hook 'inferior-lisp-mode-hook 'mdw-fontify-lispy t)
772 (add-hook 'lisp-interaction-mode-hook 'mdw-fontify-lispy t)
773 (add-hook 'slime-repl-mode-hook 'mdw-fontify-lispy t)
774 (add-hook 'lisp-mode-hook 'mdw-common-lisp-indent t)
775 (add-hook 'inferior-lisp-mode-hook
f617db13 776 #'(lambda ()
f9d83bff 777 (local-set-key "\C-m" 'comint-send-and-indent)) t))
f617db13
MW
778
779(add-hook 'text-mode-hook 'mdw-text-mode t)
780
6132bc01
MW
781;;;--------------------------------------------------------------------------
782;;; TeX stuff.
e9955c63
MW
783
784(setq TeX-output-view-style
785 '(("^dvi$"
786 ("^landscape$" "^pstricks$\\|^pst-\\|^psfrag$")
787 "%(o?)dvips -t landscape %d -o && evince %f")
788 ("^dvi$" "^pstricks$\\|^pst-\\|^psfrag$"
789 "%(o?)dvips %d -o && evince %f")
790 ("^dvi$"
791 ("^a4\\(?:dutch\\|paper\\|wide\\)\\|sem-a4$" "^landscape$")
792 "%(o?)xdvi %dS -paper a4r -s 0 %d")
793 ("^dvi$" "^a4\\(?:dutch\\|paper\\|wide\\)\\|sem-a4$"
794 "%(o?)xdvi %dS -paper a4 %d")
795 ("^dvi$"
796 ("^a5\\(?:comb\\|paper\\)$" "^landscape$")
797 "%(o?)xdvi %dS -paper a5r -s 0 %d")
798 ("^dvi$" "^a5\\(?:comb\\|paper\\)$" "%(o?)xdvi %dS -paper a5 %d")
799 ("^dvi$" "^b5paper$" "%(o?)xdvi %dS -paper b5 %d")
800 ("^dvi$" "^letterpaper$" "%(o?)xdvi %dS -paper us %d")
801 ("^dvi$" "^legalpaper$" "%(o?)xdvi %dS -paper legal %d")
802 ("^dvi$" "^executivepaper$" "%(o?)xdvi %dS -paper 7.25x10.5in %d")
803 ("^dvi$" "." "%(o?)xdvi %dS %d")
804 ("^pdf$" "." "evince %o")
805 ("^html?$" "." "netscape %o")))
806
88daf8fb
MW
807(setq TeX-view-program-selection
808 '(((output-dvi style-pstricks) "dvips and gv")
809 (output-dvi "xdvi")
810 (output-pdf "Evince")
811 (output-html "xdg-open")))
812
b615028c
MW
813(setq TeX-open-quote "\""
814 TeX-close-quote "\"")
815
ad21c20c
MW
816(setq reftex-use-external-file-finders t
817 reftex-auto-recenter-toc t)
818
819(setq reftex-label-alist
820 '(("theorem" ?T "th:" "~\\ref{%s}" t ("theorems?" "th\\.") -2)
821 ("axiom" ?A "ax:" "~\\ref{%s}" t ("axioms?" "ax\\.") -2)
822 ("definition" ?D "def:" "~\\ref{%s}" t ("definitions?" "def\\.") -2)
823 ("proposition" ?P "prop:" "~\\ref{%s}" t
824 ("propositions?" "prop\\.") -2)
4458f45a 825 ("lemma" ?L "lem:" "~\\ref{%s}" t ("lemmas?" "lem\\.") -2)
ad21c20c
MW
826 ("example" ?X "eg:" "~\\ref{%s}" t ("examples?") -2)
827 ("exercise" ?E "ex:" "~\\ref{%s}" t ("exercises?" "ex\\.") -2)
828 ("enumerate" ?i "i:" "~\\ref{%s}" item ("items?"))))
829(setq reftex-section-prefixes
830 '((0 . "part:")
831 (1 . "ch:")
832 (t . "sec:")))
55f80fae 833
cfabf52c
MW
834(setq bibtex-field-delimiters 'double-quotes
835 bibtex-entry-format '(realign opts-or-alts required-fields
836 numerical-fields last-comma delimiters
837 unify-case)
838 bibtex-include-OPTkey nil)
839
6132bc01
MW
840;;;--------------------------------------------------------------------------
841;;; SLIME setup.
c70671f3 842
ea8a749b
MW
843(trap
844 (if (not mdw-fast-startup)
845 (progn
846 (require 'slime-autoloads)
847 (slime-setup '(slime-autodoc slime-c-p-c)))))
848
c70671f3
MW
849(let ((stuff '((cmucl ("cmucl"))
850 (sbcl ("sbcl") :coding-system utf-8-unix)
851 (clisp ("clisp") :coding-system utf-8-unix))))
852 (or (boundp 'slime-lisp-implementations)
853 (setq slime-lisp-implementations nil))
854 (while stuff
855 (let* ((head (car stuff))
856 (found (assq (car head) slime-lisp-implementations)))
857 (setq stuff (cdr stuff))
858 (if found
859 (rplacd found (cdr head))
860 (setq slime-lisp-implementations
861 (cons head slime-lisp-implementations))))))
862(setq slime-default-lisp 'sbcl)
863
6132bc01
MW
864;;;--------------------------------------------------------------------------
865;;; Blogging.
362f6ac4
MW
866
867(setq weblogger-config-alist
868 '(("vox"
869 ("user" . "mdw")
870 ("server-url" . "http://vox.distorted.org.uk/admin/mt-xmlrpc.cgi")
871 ("weblog" . "1"))))
872
6132bc01
MW
873;;;--------------------------------------------------------------------------
874;;; Shell mode.
f617db13 875
6132bc01 876;; Make the shell mode aware of my prompt.
f617db13 877
ac4ae7cd 878(setq shell-prompt-pattern "^[^]#$%>»}\n]*\\([]#$%»}]\\|>>?\\) *")
f617db13 879(setq comint-password-prompt-regexp
ab9e097f 880 (concat "\\(\\([Ee]nter \\|[Oo]ld \\|[Nn]ew \\|[a-zA-Z0-9_]*'s \\|^\\)"
c70b4880 881 "[Pp]assword\\|[Pp]ass ?phrase\\(\\| [-a-zA-Z0-9._]+\\)\\):")
423716a6
MW
882 comint-file-name-chars "~/A-Za-z0-9+@:_.$#%,={}-"
883 shell-file-name-chars comint-file-name-chars)
f617db13 884
6132bc01 885;; Notice passwords, and make C-a work right.
f617db13
MW
886
887(add-hook 'shell-mode-hook #'mdw-sh-mode-setup)
21409787 888(add-hook 'shell-mode-hook #'ansi-color-for-comint-mode-on)
0805d57c 889(setq shell-font-lock-keywords nil)
f617db13
MW
890
891(add-hook 'term-mode-hook #'mdw-term-mode-setup)
892
6132bc01
MW
893;;;--------------------------------------------------------------------------
894;;; Finishing touches.
f617db13
MW
895
896(trap (select-window mdw-init-window))
897(provide 'emacs-init)
898
f617db13 899;;;----- That's all, folks --------------------------------------------------