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