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