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