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