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