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