chiark / gitweb /
dot-emacs.el: Insert missing blank line before section header.
[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 ;; --- Cosmetic stuff ---
293
294 (setq display-time-24hr-format t)
295 (display-time)
296 (trap
297   (if window-system
298       (let ((view-diary-entries-initially t))
299         (calendar))))
300
301 ;;;----- MailCrypt ----------------------------------------------------------
302
303 ;; --- Define more mode hooks for MailCrypt ---
304
305 (setq mdw-mc-modes
306       '((mdwmail-mode (encrypt . mdwmail-mc-encrypt)
307                       (sign . mdwmail-mc-sign))))
308
309 ;; --- Load the MailCrypt support ---
310
311 (trap
312   (and (string-match "linux" (symbol-name system-type))
313        (not mdw-fast-startup)
314        (progn (require 'mailcrypt-init)
315               (require 'mailcrypt)
316               (setq mc-default-scheme 'mc-scheme-gpg)
317               (setq mc-pgp-user-id "mdw-nsict-pgp")
318               (setq mc-gpg-user-id "mdw-nsict-gpg")
319               (setq mc-modes-alist (append mc-modes-alist mdw-mc-modes))
320               (setq mc-pgp-always-sign t)
321               (setq mc-gpg-always-sign t)
322               (setq mc-always-replace 'never)
323               (setq mc-passwd-timeout 3600)
324               (setq mc-temp-directory tmpdir)
325               (setq mc-modes-alist (append mc-modes-alist mdw-mc-modes))
326               (define-key mc-write-mode-map "\C-c/S" 'mc-sign-region)
327               (define-key mc-write-mode-map "\C-c/E" 'mc-encrypt-region)
328               (add-hook 'text-mode-hook 'mc-install-write-mode))))
329
330 ;;;----- Other common declarations ------------------------------------------
331
332 ;; --- Default frame size ---
333
334 (setq default-frame-alist
335       (mdw-uniquify-alist
336        '((width . 78)
337          (height . 33)
338          (vertical-scroll-bars . right))
339        (and window-system
340             '((cursor-type . bar)
341               (cursor-blink . t)
342               (left-fringe . 5)
343               (right-fringe . 5)
344               (scroll-bar-width . 15)))
345        '((cursor-color . "red"))
346        (if mdw-black-background
347            '((background-color . "black")
348              (foreground-color . "white")
349              (background-mode . dark))
350          '((background-mode . light)))
351        (and (eq window-system 'pm)
352             '((font . "-os2-System VIO-medium-r-normal--*-40-*-*-m-*-cp850")
353               (menu-font . "8.Helv")
354               (background-color . "lightgrey")))
355        '((transparency . t))
356        default-frame-alist))
357
358 ;; --- Other frame fiddling ---
359
360 (setq frame-title-format '("" invocation-name "@" system-name ": %b"))
361
362 ;; --- Global keymap changes ---
363
364 (trap
365   (windmove-default-keybindings))
366 (setq windmove-wrap-around t)
367 (trap (iswitchb-mode))
368 (global-set-key [?\C-x ?w left] 'windmove-left)
369 (global-set-key [?\C-x ?w ?h] 'windmove-left)
370 (global-set-key [?\C-x ?w up] 'windmove-up)
371 (global-set-key [?\C-x ?w ?k] 'windmove-up)
372 (global-set-key [?\C-x ?w down] 'windmove-down)
373 (global-set-key [?\C-x ?w ?j] 'windmove-down)
374 (global-set-key [?\C-x ?w right] 'windmove-right)
375 (global-set-key [?\C-x ?w ?l] 'windmove-right)
376 (global-set-key [?\C-x ?g ?l] 'org-store-link)
377 (global-set-key [?\C-x ?g ?a] 'org-agenda)
378 (global-set-key [?\C-x ?t ?i] 'timeclock-in)
379 (global-set-key [?\C-x ?t ?c] 'timeclock-change)
380 (global-set-key [?\C-x ?t ?o] 'timeclock-out)
381 (global-set-key [?\C-x ?t ?r] 'timeclock-reread-log)
382 (global-set-key [?\C-x ?t ?w] 'timeclock-workday-remaining-string)
383 (global-set-key [?\C-x ?t ?s] 'timeclock-status-string)
384 (global-set-key [?\C-x ?t ?p] 'nc-timesheet-prepare)
385 (global-set-key [?\C-x ?t ?\C-m] 'nc-timesheet-submit)
386 (global-set-key [?\M-#] 'calc-dispatch)
387 (global-set-key [?\C-x ?/] 'auto-fill-mode)
388 (global-set-key [?\C-x ?w ?d] 'mdw-divvy-window)
389 (global-set-key [insertchar] 'overwrite-mode)
390 (global-set-key [?\C-x ?\C-n] 'skel-create-file)
391 (global-set-key [?\C-x ?4 ?n] 'skel-create-file-other-window)
392 (global-set-key [?\C-x ?5 ?n] 'skel-create-file-other-frame)
393 (global-set-key [delete] 'delete-char)
394 (global-set-key [?\M-q] 'mdw-fill-paragraph)
395 (global-set-key [?\C-h ?\C-m] 'manual-entry)
396 (global-set-key [C-M-backspace] 'backward-kill-sexp)
397 (global-set-key [mode-line C-mouse-1] 'mouse-tear-off-window)
398 (global-set-key [vertical-scroll-bar C-down-mouse-1]
399                 'mouse-drag-vertical-line)
400 (global-set-key [vertical-scroll-bar C-mouse-1]
401                 #'(lambda () (interactive)))
402 (and (not mdw-fast-startup) (fboundp 'hippie-expand)
403      (global-set-key [?\M-/] 'hippie-expand))
404
405 (defun mdw-clobber-org-mode-map ()
406   (dolist (key '([S-up] [S-down] [S-left] [S-right]
407                  [?\e left] [?\e right]
408                  [M-left] [M-right]))
409     (define-key org-mode-map key nil))
410   (define-key org-mode-map [?\C-c left] 'org-shiftleft)
411   (define-key org-mode-map [?\C-c right] 'org-shiftright)
412   (define-key org-mode-map [?\C-c up] 'org-shiftup)
413   (define-key org-mode-map [?\C-c down] 'org-shiftdown)
414   (define-key org-mode-map [C-left] 'org-metaleft)
415   (define-key org-mode-map [C-right] 'org-metaright)
416   (define-key org-mode-map [C-up] 'org-metaup)
417   (define-key org-mode-map [C-down] 'org-metadown))
418 (add-hook 'org-mode-hook 'mdw-clobber-org-mode-map)
419
420 ;; --- Recognising types of files ---
421
422 (setq auto-mode-alist
423       (append `(("\\.p[lm]$" . perl-mode)
424                 ("\\.m$" . objc-mode)
425                 ("\\.mxd$" . c-mode)
426                 ("\\.cs" . csharp-mode)
427                 ("\\.org$" . org-mode)
428                 ;; ("/[ch]/" . c-mode)
429                 (,(concat "/\\("
430                           "\\.stgit\\.msg" "\\|"
431                           "\\.git/COMMIT_EDITMSG" "\\|"
432                           "svn-commit\\.tmp" "\\|"
433                           "svk-commit[^/.]*\\.tmp"
434                           "\\)$")
435                  . text-mode)
436                 (,(concat "^" tmpdir "/\\("
437                           "svk-commit[^/.]*\\.tmp" "\\|"
438                           "gitci\\.[^/.]*" "\\|"
439                           "cvs[^/.]\\{6\\}" "\\|"
440                           "quilt_header\.[^/.]\\{6\\}"
441                           "\\)$")
442                  . text-mode)
443                 ("\\.calc?$" . apcalc-mode)
444                 ("/src/linux/.*\\.\\(c\\|h\\|cc\\)$" . linux-c-mode)
445                 ("/\\(s\\|sh\\)/" . arm-assembler-mode)
446                 ("\\.\\(cmd\\|exec\\|rexx\\)$" . rexx-mode)
447                 ("\\.st$" . smalltalk-mode)
448                 ("\\.msgs$" . messages-mode)
449                 ("/all-cmds\\.in$" . cpp-messages-mode)
450                 ("\\.\\(tex\\|dtx\\)$" . latex-mode)
451                 ("\\.gc$" . haskell.-mode)
452                 (,(concat "^" (getenv "HOME") "/News/") . mdwmail-mode)
453                 (,(concat "^" tmpdir "/\\(SLRN\\|snd\\|pico\\|mutt\\)")
454                  . mdwmail-mode))
455               auto-mode-alist))
456
457 (setq interpreter-mode-alist
458       (append `(("runlisp" . lisp-mode))
459               interpreter-mode-alist))
460
461 (setq completion-ignored-extensions
462       (append `(".hc" ".hi") completion-ignored-extensions))
463
464 ;; --- Some common local definitions ---
465
466 (make-variable-buffer-local 'mdw-auto-indent)
467
468 (mapcar (lambda (hook) (add-hook hook 'mdw-misc-mode-config))
469         '(c-mode-hook c++-mode-hook objc-mode-hook java-mode-hook
470           csharp-mode-hook perl-mode-hook cperl-mode-hook
471           python-mode-hook awk-mode-hook tcl-mode-hook
472           asm-mode-hook TeX-mode-hook LaTeX-mode-hook
473           TeXinfo-mode-hook tex-mode-hook latex-mode-hook
474           texinfo-mode-hook emacs-lisp-mode-hook scheme-mode-hook
475           lisp-mode-hook lisp-interaction-mode-hook
476           inferior-lisp-mode-hook slime-repl-mode-hook
477           sml-mode-hook haskell-mode-hook erlang-mode-hook
478           smalltalk-mode-hook rexx-mode-hook
479           arm-assembler-mode-hook))
480
481 (global-font-lock-mode t)
482 (defalias 'perl-mode 'cperl-mode)
483
484 ;;;----- Rootly editingness -------------------------------------------------
485
486 (eval-after-load "tramp"
487   '(progn
488      (setq tramp-methods
489            (mdw-uniquify-alist
490             `(("become"
491                (tramp-connection-function tramp-open-connection-su)
492                (tramp-remote-sh "/bin/sh")
493                (tramp-login-program "become")
494                (tramp-copy-program nil)
495                (tramp-copy-args nil)
496                (tramp-copy-keep-date-arg nil)
497                (tramp-login-args ("TERM=dumb" "%u")))
498               ("really"
499                (tramp-connection-function tramp-open-connection-su)
500                (tramp-login-program "really")
501                (tramp-login-args ("-u" "%u" "--"
502                                   "env" "TERM=dumb" "/bin/sh"))
503                (tramp-copy-program nil)
504                (tramp-copy-args nil)
505                (tramp-copy-keep-date-arg nil)
506                (tramp-remote-sh "/bin/sh"))
507               ,@tramp-methods)))
508      (setq tramp-multi-connection-function-alist
509            (mdw-uniquify-alist
510             '(("bc" tramp-multi-connect-su "become TERM=dumb %u%n"))
511             '(("r" tramp-multi-connect-su "really -u %u%n"))
512             tramp-multi-connection-function-alist))
513      (setq tramp-default-method "ssh")
514      (setq tramp-default-method-alist
515            `(("\\`localhost\\'" ""
516               ,(cond ((executable-find "become") "become")
517                      ((executable-find "really") "really")
518                      (t "su")))))))
519
520 ;;;----- General fontification ----------------------------------------------
521
522 ;; --- Configure lazy fontification ---
523
524 (and (fboundp 'lazy-lock-mode)
525      (setq font-lock-support-mode 'lazy-lock-mode))
526 ; (setq lazy-lock-defer-contextually t)
527 (setq lazy-lock-defer-time nil)
528 (setq font-lock-maximum-decoration 3)
529 (setq lazy-lock-minimum-size 0)
530 (setq lazy-lock-stealth-time 5)
531 (setq lazy-lock-stealth-lines 100)
532 (setq lazy-lock-stealth-verbose t)
533
534 (add-hook 'after-make-frame-functions 'mdw-do-set-font)
535 (add-hook 'term-setup-hook (lambda () (mdw-do-set-font (selected-frame))))
536 (add-hook 'window-setup-hook (lambda () (mdw-do-set-font (selected-frame))))
537
538 (add-hook 'c-mode-hook 'mdw-fontify-c-and-c++ t)
539 (add-hook 'objc-mode-hook 'mdw-fontify-c-and-c++ t)
540 (add-hook 'c++-mode-hook 'mdw-fontify-c-and-c++ t)
541 (add-hook 'linux-c-mode-hook #'(lambda () (setq c-basic-offset 8)))
542 (add-hook 'asm-mode-hook 'mdw-fontify-asm t)
543
544 (add-hook 'apcalc-mode-hook 'mdw-misc-mode-config t)
545 (add-hook 'apcalc-mode-hook 'mdw-fontify-apcalc t)
546
547 (add-hook 'java-mode-hook 'mdw-fontify-java t)
548 (add-hook 'csharp-mode-hook 'mdw-fontify-csharp t)
549
550 (add-hook 'awk-mode-hook 'mdw-fontify-awk t)
551
552 (add-hook 'perl-mode-hook 'mdw-fontify-perl t)
553 (add-hook 'cperl-mode-hook 'mdw-fontify-perl t)
554
555 (setq-default py-indent-offset 2)
556 (add-hook 'python-mode-hook 'mdw-fontify-python t)
557 (setq py-python-command-args `("-i" "-colors" ,(if mdw-black-background
558                                                    "Linux"
559                                                  "LightBG")))
560
561 (setq-default tcl-indent-level 2)
562 (add-hook 'tcl-mode-hook 'mdw-fontify-tcl t)
563
564 (add-hook 'rexx-mode-hook 'mdw-fontify-rexx t)
565
566 (setq sml-nested-if-indent t)
567 (setq sml-case-indent nil)
568 (setq sml-indent-level 4)
569 (setq sml-type-of-indent nil)
570 (add-hook 'sml-mode-hook 'mdw-fontify-sml t)
571
572 (add-hook 'haskell-mode-hook 'mdw-fontify-haskell t)
573 (setq-default haskell-indent-offset 2)
574
575 (add-hook 'erlang-mode-hook 'mdw-fontify-erlang t)
576
577 (add-hook 'texinfo-mode-hook 'mdw-fontify-texinfo t)
578 (add-hook 'TeXinfo-mode-hook 'mdw-fontify-texinfo t)
579
580 (setq LaTeX-table-label "tbl:")
581 (setq TeX-auto-untabify nil)
582 (add-hook 'TeX-mode-hook 'mdw-fontify-tex t)
583 (add-hook 'tex-mode-hook 'mdw-fontify-tex t)
584 (add-hook 'LaTeX-mode-hook 'mdw-fontify-tex t)
585 (add-hook 'latex-mode-hook 'mdw-fontify-tex t)
586
587 (add-hook 'sh-mode-hook #'mdw-setup-sh-script-mode)
588 (add-hook 'autoconf-mode-hook #'mdw-setup-m4)
589 (add-hook 'm4-mode-hook #'mdw-setup-m4)
590
591 (add-hook 'smalltalk-mode-hook 'mdw-fontify-smalltalk t)
592 (add-hook 'smalltalk-mode-hook 'mdw-setup-smalltalk t)
593
594 (add-hook 'emacs-lisp-mode-hook 'mdw-fontify-lispy t)
595 (add-hook 'scheme-mode-hook 'mdw-fontify-lispy t)
596 (add-hook 'lisp-mode-hook 'mdw-fontify-lispy t)
597 (add-hook 'inferior-lisp-mode-hook 'mdw-fontify-lispy t)
598 (add-hook 'lisp-interaction-mode-hook 'mdw-fontify-lispy t)
599 (add-hook 'slime-repl-mode-hook 'mdw-fontify-lispy t)
600 (add-hook 'lisp-mode-hook 'mdw-common-lisp-indent t)
601 (add-hook 'inferior-lisp-mode-hook
602           #'(lambda ()
603               (local-set-key "\C-m" 'comint-send-and-indent)) t)
604
605 (add-hook 'text-mode-hook 'mdw-text-mode t)
606
607 ;;;----- TeX stuff ----------------------------------------------------------
608
609 (setq TeX-output-view-style
610       '(("^dvi$"
611          ("^landscape$" "^pstricks$\\|^pst-\\|^psfrag$")
612          "%(o?)dvips -t landscape %d -o && evince %f")
613         ("^dvi$" "^pstricks$\\|^pst-\\|^psfrag$"
614          "%(o?)dvips %d -o && evince %f")
615         ("^dvi$"
616          ("^a4\\(?:dutch\\|paper\\|wide\\)\\|sem-a4$" "^landscape$")
617          "%(o?)xdvi %dS -paper a4r -s 0 %d")
618         ("^dvi$" "^a4\\(?:dutch\\|paper\\|wide\\)\\|sem-a4$"
619          "%(o?)xdvi %dS -paper a4 %d")
620         ("^dvi$"
621          ("^a5\\(?:comb\\|paper\\)$" "^landscape$")
622          "%(o?)xdvi %dS -paper a5r -s 0 %d")
623         ("^dvi$" "^a5\\(?:comb\\|paper\\)$" "%(o?)xdvi %dS -paper a5 %d")
624         ("^dvi$" "^b5paper$" "%(o?)xdvi %dS -paper b5 %d")
625         ("^dvi$" "^letterpaper$" "%(o?)xdvi %dS -paper us %d")
626         ("^dvi$" "^legalpaper$" "%(o?)xdvi %dS -paper legal %d")
627         ("^dvi$" "^executivepaper$" "%(o?)xdvi %dS -paper 7.25x10.5in %d")
628         ("^dvi$" "." "%(o?)xdvi %dS %d")
629         ("^pdf$" "." "evince %o")
630         ("^html?$" "." "netscape %o")))
631
632 (setq reftex-use-external-file-finders t
633       reftex-auto-recenter-toc t)
634
635 (setq reftex-label-alist
636       '(("theorem" ?T "th:" "~\\ref{%s}" t ("theorems?" "th\\.") -2)
637         ("axiom" ?A "ax:" "~\\ref{%s}" t ("axioms?" "ax\\.") -2)
638         ("definition" ?D "def:" "~\\ref{%s}" t ("definitions?" "def\\.") -2)
639         ("proposition" ?P "prop:" "~\\ref{%s}" t
640          ("propositions?" "prop\\.") -2)
641         ("lemma" ?P "lem:" "~\\ref{%s}" t ("lemmas?" "lem\\.") -2)
642         ("example" ?X "eg:" "~\\ref{%s}" t ("examples?") -2)
643         ("exercise" ?E "ex:" "~\\ref{%s}" t ("exercises?" "ex\\.") -2)
644         ("enumerate" ?i "i:" "~\\ref{%s}" item ("items?"))))
645 (setq reftex-section-prefixes
646       '((0 . "part:")
647         (1 . "ch:")
648         (t . "sec:")))
649
650 (setq bibtex-field-delimiters 'double-quotes
651       bibtex-entry-format '(realign opts-or-alts required-fields
652                             numerical-fields last-comma delimiters
653                             unify-case)
654       bibtex-include-OPTkey nil)
655
656 ;;;----- SLIME setup --------------------------------------------------------
657
658 (trap
659  (if (not mdw-fast-startup)
660      (progn
661        (require 'slime-autoloads)
662        (slime-setup '(slime-autodoc slime-c-p-c)))))
663
664 (let ((stuff '((cmucl ("cmucl"))
665                (sbcl ("sbcl") :coding-system utf-8-unix)
666                (clisp ("clisp") :coding-system utf-8-unix))))
667   (or (boundp 'slime-lisp-implementations)
668       (setq slime-lisp-implementations nil))
669   (while stuff
670     (let* ((head (car stuff))
671            (found (assq (car head) slime-lisp-implementations)))
672       (setq stuff (cdr stuff))
673       (if found
674           (rplacd found (cdr head))
675         (setq slime-lisp-implementations
676               (cons head slime-lisp-implementations))))))
677 (setq slime-default-lisp 'sbcl)
678
679 ;;;----- Blogging -----------------------------------------------------------
680
681 (setq weblogger-config-alist
682       '(("vox"
683          ("user" . "mdw")
684          ("server-url" . "http://vox.distorted.org.uk/admin/mt-xmlrpc.cgi")
685          ("weblog" . "1"))))
686
687 ;;;----- Shell mode ---------------------------------------------------------
688
689 ;; --- Make the shell mode aware of my prompt ---
690
691 (setq shell-prompt-pattern "^[^]#$%>»}\n]*[]#$%>»}] *")
692 (setq comint-password-prompt-regexp
693       (concat "\\(\\([Oo]ld \\|[Nn]ew \\|[a-zA-Z0-9_]*'s \\|^\\)"
694               "[Pp]assword\\|pass phrase\\):\\s *\\'"))
695
696 ;; --- Notice passwords, and make C-a work right ---
697
698 (add-hook 'shell-mode-hook #'mdw-sh-mode-setup)
699 (add-hook 'shell-mode-hook #'ansi-color-for-comint-mode-on)
700 (setq shell-font-lock-keywords nil)
701
702 (add-hook 'term-mode-hook #'mdw-term-mode-setup)
703
704 ;;;----- Finishing touches --------------------------------------------------
705
706 (trap (select-window mdw-init-window))
707 (provide 'emacs-init)
708
709 ;;;----- That's all, folks --------------------------------------------------