dot/emacs: Configuration for the winning (but secret) `rfcview' package.
[profile] / dot / emacs
CommitLineData
502f4699 1;;; -*- mode: emacs-lisp; coding: utf-8 -*-
f617db13 2;;;
f617db13
MW
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)
a1bf764e 26(require 'cl)
f617db13 27
6132bc01
MW
28;;;--------------------------------------------------------------------------
29;;; Some random initialisation.
f617db13
MW
30
31(setq mdw-init-window (selected-window))
32
6132bc01 33;; Load some other bits of code.
f617db13 34
400223a1
MW
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)
459c9fb2
MW
40(maybe-autoload 'git-blame-mode "git-blame" nil t)
41(maybe-autoload 'stgit "stgit" nil t)
b29312d0
MW
42(maybe-autoload 'nc-timesheet-prepare "nc-timesheet" nil t nil)
43(maybe-autoload 'nc-timesheet-submit "nc-timesheet" nil t nil)
44
eac7b622
MW
45(and (library-exists-p "debian-changelog-mode")
46 (add-to-list 'auto-mode-alist
47 `(,(concat "/debian/"
48 "\\("
01a478c2
MW
49 "[" "[:lower:]" "[:digit:]" "]"
50 "[" "[:lower:]" "[:digit:]" ".+-" "]+"
eac7b622
MW
51 "\\."
52 "\\)?"
53 "changelog\\'")
54 . debian-changelog-mode)))
55
400223a1
MW
56(and (library-exists-p "vc-git")
57 (not (memq 'GIT vc-handled-backends))
8d244e27 58 (not (memq 'Git vc-handled-backends))
79ba2d35 59 (not (memq 'git vc-handled-backends))
308b0b57 60 (setq vc-handled-backends (cons 'GIT vc-handled-backends)))
f617db13 61
0f2aab7b 62(setq magit-log-cutoff-length 512)
2285e371
MW
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)
0f2aab7b 66
ab9e097f
MW
67(trap (or mdw-fast-startup (require 'p4)))
68
c7a8da49 69(trap (or mdw-fast-startup (require 'tex-site)))
f617db13 70
c07e3e33 71(trap (or mdw-fast-startup t (semantic-load-enable-code-helpers)))
33abafd2 72(setq semanticdb-default-save-directory "~/.emacs.d/semanticdb/")
e74ad275
MW
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)))
75bd2d66 78
6132bc01 79;; Skeleton stuff.
f617db13 80
c7a8da49 81(trap (or mdw-fast-startup (require 'skel-init)))
f617db13 82
6132bc01 83;; Window system-dependent things.
f617db13
MW
84
85(require 'paren)
86(trap (show-paren-mode t))
87(or window-system (menu-bar-mode -1))
88
c6fe19d5
MW
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
6132bc01 96;; Temporary directory handling.
f617db13
MW
97
98(defun mdw-check-dir-exists (dir)
99 (and dir
100 (file-directory-p dir)
101 dir))
102(setq tmpdir (or (mdw-check-dir-exists (getenv "TMPDIR"))
103 (mdw-check-dir-exists (format "/tmp/%s" (user-login-name)))
104 "/tmp"))
105
6132bc01 106;; Emacs server behaviour.
f617db13 107
ccc2e1fa
MW
108(and (or window-system (>= emacs-major-version 23))
109 (progn (setq server-temp-file-regexp (concat "^" tmpdir "\\|/draft$")
116259a9 110 edit-server-new-frame nil
ccc2e1fa 111 gnuserv-frame t)
116259a9
MW
112 (trap (server-start))
113 (trap (progn
114 (require 'edit-server)
955a327c
MW
115 (edit-server-start)
116 (let ((edit (get-process "edit-server")))
117 (and edit
118 (set-process-query-on-exit-flag edit nil)))))))
f617db13 119
6132bc01 120;; Control backup behaviour.
f617db13
MW
121
122(setq backup-by-copying nil)
123(setq backup-by-copying-when-linked t)
124(setq backup-by-copying-when-mismatch t)
125
2ae647c4
MW
126(setq mdw-backup-disable-regexps
127 '("/\\.git/COMMIT_EDITMSG$"
128 "/\\.stgit\\(-edit\\.txt\\|msg\\.txt\\|\\.msg\\)$"))
129
6132bc01 130;; Safe variables.
20d4403c
MW
131
132(setq safe-local-variable-values
133 '((make-backup-files . nil)))
134
6132bc01 135;; Calculator fiddling.
f617db13
MW
136
137(setq calc-settings-file "~/.emacs-calc")
138(load calc-settings-file)
139
140;; ---- Some mail and news configuration ---
141
c17fdbff 142(setq mail-from-style 'angles
c60cbbe8
MW
143 mail-signature t
144 mail-yank-prefix "> "
145 mail-archive-file-name "~/Mail/sent"
146 compose-mail-user-agent-warnings nil)
f617db13
MW
147
148(setq rmail-display-summary t)
149(setq rmail-file-name "~/Mail/rmail")
150
03f7e611
MW
151(setq sendmail-program "~/bin/sendmail-hack"
152 send-mail-function 'sendmail-send-it
153 mail-interactive t
154 sendmail-error-reporting-interactive '("-odb" "-oee"))
a3bdb4d9 155
cb1389c0
MW
156(setq mail-user-agent 'message-user-agent
157 read-mail-command 'gnus)
728fe976
MW
158(setq message-signature-separator "^-- \\(\\|\\[mdw\\]\\)$"
159 message-yank-prefix "> "
160 message-yank-cited-prefix "> "
98ed7cc2 161 message-send-mail-function 'message-send-mail-with-sendmail
03f7e611
MW
162 message-interactive t
163 message-sendmail-extra-arguments '("-odb" "-oee")
f646ea77 164 message-sendmail-envelope-from 'header
728fe976
MW
165 message-indent-citation-function '(message-indent-citation
166 mdw-trim-spaces-after-citing))
167
168(defun mdw-trim-spaces-after-citing ()
169 (save-excursion
170 (save-restriction
171 (narrow-to-region (point) (mark t))
172 (while (re-search-forward "^> +$" nil t)
173 (replace-match ">")))))
a3bdb4d9
MW
174
175(and (fboundp 'turn-on-gnus-dired-mode)
176 (not mdw-fast-startup)
177 (add-hook 'dired-mode-hook 'turn-on-gnus-dired-mode))
178
179(or mdw-fast-startup
98a0bc3f 180 (trap (bbdb-initialize 'gnus 'sendmail 'message)))
a3bdb4d9
MW
181(setq bbdb-north-american-phone-numbers-p nil)
182
6132bc01 183;; Customization.
78100945
MW
184
185(setq custom-file "~/.emacs-custom")
186(trap (load custom-file))
187
188(trap (load "~/.emacs-local"))
189
6132bc01 190;; Internationalization twiddling.
f617db13
MW
191
192(trap
bc30f5c4 193 ;; Have top-bit-set characters work properly in terminals.
f617db13
MW
194 (let ((im (current-input-mode)))
195 (apply #'set-input-mode
bc30f5c4 196 (nconc (list (nth 0 im) (nth 1 im) 0) (nthcdr 3 im)))))
f617db13 197
6132bc01 198;; Don't disable any commands.
f617db13
MW
199
200(mapatoms #'(lambda (sym) (put sym 'disabled nil)))
201
6132bc01 202;; Split a wide window.
f617db13
MW
203
204(mdw-divvy-window)
205
6132bc01 206;; Postscript printing.
1a4d7e7d
MW
207
208(setq ps-paper-type 'a4
209 ps-print-color-p nil
210 ps-landscape-mode t
2c84dee2 211 ps-number-of-columns 2
1a4d7e7d 212 ps-font-family 'Courier
2c84dee2 213 ps-font-size 6.5)
1a4d7e7d 214
6132bc01 215;; Splash screen stuff.
1a4d7e7d
MW
216
217(or window-system
218 (setq inhibit-splash-screen t
219 inhibit-startup-message t))
220
6132bc01 221;; Other goodies.
f617db13 222
89a72209 223(trap (resize-minibuffer-mode 1)) ;Make minibuffer grow dynamically
f617db13 224(auto-compression-mode 1) ;Enable automatic compression
cf6c4653
MW
225(setq enable-local-variables :safe
226 enable-local-eval nil)
f617db13 227(setq dabbrev-case-replace nil) ;Retain case when completing
e2363e48 228(setq linum-format "%7d ")
f617db13 229(setq next-line-add-newlines nil) ;Don't add weird newlines
9a60965e 230(setq split-height-threshold nil) ;Reuse windows where sensible
9aea0679
MW
231(setq display-buffer-reuse-frames nil ;Don't confuse me by showing buffers
232 iswitchb-default-method 'samewindow) ;in other random frames
f617db13 233(setq dired-deletion-confirmer ;Make deletion easier in dired
f3f0c0a0
MW
234 (symbol-function 'y-or-n-p)
235 dired-listing-switches "-alF" ;Do `ls -F' things in dired windows
236 wdired-allow-to-change-permissions 'advanced)
85dc07c7 237(setq read-quoted-char-radix 16) ;C-q HEX-STUFF [RET]
f617db13
MW
238(setq case-fold-file-names nil) ;Don't translate file names (grr...)
239(setq scroll-step 5) ;Don't scroll too much at a time
240(setq-default fill-column 77) ;I use rather narrow windows
241(setq-default comment-column 40) ;Set a standard comment column
a2f12a94
MW
242(setq-default truncate-partial-width-windows nil
243 truncate-lines t)
3459d2cb
MW
244(setq default-indicate-empty-lines t)
245(setq whitespace-style
11a169c1 246 '(trailing space-before-tab space-after-tab empty indentation face))
4d4f9ad1
MW
247(setq woman-use-own-frame nil ;Keep man pages somewhere sensible
248 woman-fill-column 72) ;Right margin position.
f617db13
MW
249(setq diff-switches "-u" ;I like reading unified diffs
250 cvs-diff-flags (list diff-switches))
251(setq echo-keystrokes 10) ;Long delay before keystrokes echo
252(setq ange-ftp-ftp-program-name "pftp") ;Use passive FTP
253(setq find-ls-option ;Build file lists efficiently
254 '("-print0 | xargs -0r ls -ld" . "ld"))
6006518e 255(setq bookmark-save-flag 0) ;Save bookmarks automatically
91dba4e4 256(setq x-gtk-file-dialog-help-text nil)
e34a133f 257(setq Info-fontify-maximum-menu-size 100000)
3af826d8 258(setq set-mark-command-repeat-pop t)
38ddb67e 259(setq password-cache-expiry nil)
9de66169
MW
260(setq-default proced-filter 'all
261 proced-sort 'user)
68b2e9e6 262(setq ispell-program-name "aspell-hack"
cbffcf2b
MW
263 ispell-local-dictionary "en_GB-ize-w_accents"
264 flyspell-default-dictionary "en_GB-ize-w_accents"
30acc372
MW
265 ispell-local-dictionary-alist
266 '(("en_GB-ize-w_accents" "[[:alpha:]]" "[^[:alpha:]]" "'" t
267 ("-d" "en_GB-ize-w_accents") nil utf-8))
689009c0 268 ispell-silently-savep t)
f617db13
MW
269(trap
270 (require 'uniquify)
271 (setq uniquify-buffer-name-style 'post-forward-angle-brackets)
272 (setq uniquify-after-kill-buffer-p t))
273(transient-mark-mode t)
9958af68 274(setq mark-even-if-inactive t)
f617db13
MW
275(trap
276 (tooltip-mode 0)
277 (tool-bar-mode 0))
4ae85887 278(trap (or mdw-fast-startup (global-auto-revert-mode t)))
f617db13
MW
279(setq psgml-html-build-new-buffer nil)
280
3d6a7d27
MW
281(defvar mdw-black-background t)
282
5de5db48
MW
283(eval-after-load "outline"
284 '(progn
285 (trap (require 'foldout))
286 (define-key outline-mode-prefix-map [?\C-r] 'reveal-mode)
287 (define-key outline-mode-prefix-map [?\C--] 'mdw-outline-collapse-all)))
8fd1960c 288
56becc91
MW
289(setq imenu-auto-rescan t
290 imenu-auto-rescan-maxout (* 128 1024)
291 imenu-max-items 60)
292
f141fe0f
MW
293(setq cltl2-root-url (mdw-config 'cltl-url))
294(setq common-lisp-hyperspec-root (mdw-config 'hyperspec-url))
295
25b77072
MW
296(setq rfcview-rfc-location-pattern
297 "/ftp@mirror.distorted.org.uk:/pub/mirrors/rfc/rfc%s.txt"
298 rfcview-std-location-pattern
299 "/ftp@mirror.distorted.org.uk:/pub/mirrors/rfc/std/std%s.txt"
300 rfcview-index-location
301 "/ftp@mirror.distorted.org.uk:/pub/mirrors/rfc/rfc-index.txt")
302
6132bc01
MW
303;;;--------------------------------------------------------------------------
304;;; W3 and URL fetching stuff.
f141fe0f 305
45d17e24 306(let ((proxy (mdw-config 'http-proxy)))
f141fe0f
MW
307 (setq url-proxy-services
308 `(("http" . ,proxy)
309 ("ftp" . ,proxy)
310 ("gopher" . ,proxy))))
311(setq url-cookie-untrusted-urls '("."))
852cd5fb 312
a203fba8 313(setq browse-url-browser-function (mdw-good-url-browser)
ed5e20a5 314 browse-url-generic-program "mdw-chrome"
a203fba8 315 browse-url-mozilla-program "firefox")
9b72460c 316
3d6231da
MW
317(setq w3m-default-display-inline-images t
318 w3m-use-cookies t)
9b72460c 319
b0ef6a66
MW
320(eval-after-load "w3m"
321 '(let ((entries '(("application/pdf" "\\.pdf\\'" ("evince" file) nil)
322 ("application/x-pdf" "\\.pdf\\'" ("evince" file) nil))))
323 (dolist (e entries)
324 (setq w3m-content-type-alist
325 (cons e (remove* (car e) w3m-content-type-alist
326 :key #'car :test #'string=))))))
327
f141fe0f
MW
328(setq w3-do-incremental-display t
329 w3-use-menus '(file edit view go bookmark options
330 buffers style search emacs nil help)
331 w3-display-inline-image t
332 w3-keybinding 'info)
f617db13 333
6132bc01
MW
334;;;--------------------------------------------------------------------------
335;;; Calendar configuration.
f617db13 336
ea09c6cb
MW
337(setq diary-file "~/etc/diary")
338
6132bc01 339;; Trivial stuff for the sunrise/sunset calculations.
f617db13
MW
340
341(setq calendar-latitude 52.2)
342(setq calendar-longitude 0.1)
343(setq calendar-location-name "Cambridge, UK")
344
6132bc01 345;; Holidays.
a1293ade
MW
346
347(and (not mdw-fast-startup)
348 (trap
349 (require 'ew-hols)
350 (setq other-holidays (append english-and-welsh-bank-holidays
351 other-holidays))))
352
6132bc01 353;; Date format fiddling.
f617db13
MW
354
355(setq european-calendar-style t)
356
357(setq diary-date-forms '((day "[-/]" month "[^-/0-9]")
358 (day " *" monthname "[ \t]*\\(\^M\\|\n\\)")
359 (backup day " *" monthname "\\W+\\<[^*0-9]")
360 (day "[-/]" month "[-/]" year "[^0-9]")
361 (day " *" monthname " *" year "[^0-9]")
362 (year "[-/]" month "[-/]" day "[^0-9]")
363 (dayname "\\W")))
364
6132bc01 365;; Fancy diary handling.
f617db13
MW
366
367(add-hook 'diary-display-hook 'fancy-diary-display)
368(setq diary-list-include-blanks t)
369(add-hook 'list-diary-entries-hook 'sort-diary-entries t)
370(add-hook 'list-diary-entries-hook 'include-other-diary-files)
371(add-hook 'mark-diary-entries-hook 'mark-included-diary-files)
372
6132bc01 373;; Appointment management.
f617db13
MW
374
375(add-hook 'diary-hook 'appt-make-list)
376(setq appt-issue-message t)
377(setq appt-display-interval 3)
378(setq appt-message-warning-time 10)
379
6132bc01 380;; Org-mode agenda.
2d6b9d95 381
e3f433a2
MW
382(setq org-agenda-include-diary t
383 org-tags-column -77)
2d6b9d95 384
6132bc01 385;; Cosmetic stuff.
f617db13 386
b7a7bc64
MW
387(setq calendar-view-diary-initially-flag t
388 calendar-view-holidays-initially-flag t)
389
f617db13
MW
390(setq display-time-24hr-format t)
391(display-time)
dca9e3ae 392(column-number-mode 1)
f8faccda 393(trap (if window-system (calendar)))
f617db13 394
6132bc01
MW
395;;;--------------------------------------------------------------------------
396;;; MailCrypt.
f617db13 397
6132bc01 398;; Define more mode hooks for MailCrypt.
f617db13
MW
399
400(setq mdw-mc-modes
401 '((mdwmail-mode (encrypt . mdwmail-mc-encrypt)
402 (sign . mdwmail-mc-sign))))
403
6132bc01 404;; Load the MailCrypt support.
f617db13
MW
405
406(trap
407 (and (string-match "linux" (symbol-name system-type))
c7a8da49 408 (not mdw-fast-startup)
f617db13
MW
409 (progn (require 'mailcrypt-init)
410 (require 'mailcrypt)
411 (setq mc-default-scheme 'mc-scheme-gpg)
412 (setq mc-pgp-user-id "mdw-nsict-pgp")
413 (setq mc-gpg-user-id "mdw-nsict-gpg")
414 (setq mc-modes-alist (append mc-modes-alist mdw-mc-modes))
415 (setq mc-pgp-always-sign t)
416 (setq mc-gpg-always-sign t)
417 (setq mc-always-replace 'never)
418 (setq mc-passwd-timeout 3600)
419 (setq mc-temp-directory tmpdir)
420 (setq mc-modes-alist (append mc-modes-alist mdw-mc-modes))
421 (define-key mc-write-mode-map "\C-c/S" 'mc-sign-region)
422 (define-key mc-write-mode-map "\C-c/E" 'mc-encrypt-region)
423 (add-hook 'text-mode-hook 'mc-install-write-mode))))
424
6132bc01
MW
425;;;--------------------------------------------------------------------------
426;;; Other common declarations.
f617db13 427
6132bc01 428;; Default frame size.
f617db13
MW
429
430(setq default-frame-alist
431 (mdw-uniquify-alist
294db17f 432 `((width . ,(if (>= emacs-major-version 21) 77 78))
f617db13 433 (height . 33)
c14ce5af
MW
434 (vertical-scroll-bars . right)
435 (cursor-type . bar)
436 (cursor-blink . t)
437 (left-fringe . 5)
438 (right-fringe . 5)
439 (scroll-bar-width . 15)
294db17f
MW
440 (cursor-color . "red")
441 (background-mode . ,(if mdw-black-background 'dark 'light)))))
2dd9081f
MW
442(setq window-system-default-frame-alist
443 '((pm (font . "-os2-System VIO-medium-r-normal--*-40-*-*-m-*-cp850")
444 (menu-font . "8.Helv")
445 (background-color . "lightgrey"))
446 (nil (menu-bar-lines . 0))))
f617db13 447
6132bc01 448;; Other frame fiddling.
f617db13
MW
449
450(setq frame-title-format '("" invocation-name "@" system-name ": %b"))
451
6132bc01 452;; Global keymap changes.
f617db13
MW
453
454(trap
f110f932
MW
455 (windmove-default-keybindings))
456(setq windmove-wrap-around t)
f617db13 457(trap (iswitchb-mode))
f9d83bff
MW
458(progn
459 (global-set-key [?\C-x ?w left] 'windmove-left)
460 (global-set-key [?\C-x ?w ?h] 'windmove-left)
461 (global-set-key [?\C-x ?w up] 'windmove-up)
462 (global-set-key [?\C-x ?w ?k] 'windmove-up)
463 (global-set-key [?\C-x ?w down] 'windmove-down)
464 (global-set-key [?\C-x ?w ?j] 'windmove-down)
465 (global-set-key [?\C-x ?w right] 'windmove-right)
466 (global-set-key [?\C-x ?w ?l] 'windmove-right)
467 (global-set-key [?\C-x ?g ?l] 'org-store-link)
468 (global-set-key [?\C-x ?g ?a] 'org-agenda)
469 (global-set-key [?\C-x ?g ?b] 'org-iswitchb)
470 (global-set-key [?\C-x ?t ?i] 'timeclock-in)
471 (global-set-key [?\C-x ?t ?c] 'timeclock-change)
472 (global-set-key [?\C-x ?t ?o] 'timeclock-out)
473 (global-set-key [?\C-x ?t ?r] 'timeclock-reread-log)
474 (global-set-key [?\C-x ?t ?w] 'timeclock-workday-remaining-string)
475 (global-set-key [?\C-x ?t ?s] 'timeclock-status-string)
476 (global-set-key [?\C-x ?t ?p] 'nc-timesheet-prepare)
477 (global-set-key [?\C-x ?t ?\C-m] 'nc-timesheet-submit)
3ba0b777 478 (global-set-key [?\C-x ?3] 'mdw-split-window-horizontally)
f9d83bff
MW
479 (global-set-key [?\M-#] 'calc-dispatch)
480 (global-set-key [?\C-x ?/] 'auto-fill-mode)
481 (global-set-key [?\C-x ?w ?d] 'mdw-divvy-window)
482 (global-set-key [insertchar] 'overwrite-mode)
483 (global-set-key [?\C-x ?\C-n] 'skel-create-file)
484 (global-set-key [?\C-x ?4 ?n] 'skel-create-file-other-window)
485 (global-set-key [?\C-x ?5 ?n] 'skel-create-file-other-frame)
486 (global-set-key [delete] 'delete-char)
487 (global-set-key [?\M-q] 'mdw-fill-paragraph)
488 (global-set-key [?\C-h ?\C-m] 'manual-entry)
489 (global-set-key [C-M-backspace] 'backward-kill-sexp)
490 (global-set-key [mode-line C-mouse-1] 'mouse-tear-off-window)
491 (global-set-key [vertical-scroll-bar C-down-mouse-1]
492 'mouse-drag-vertical-line)
493 (global-set-key [vertical-scroll-bar C-mouse-1]
494 #'(lambda () (interactive)))
56becc91 495 (global-set-key [M-S-mouse-3] 'imenu)
f9d83bff
MW
496 (global-set-key [XF86WakeUp] "")
497 (and (not mdw-fast-startup) (fboundp 'hippie-expand)
498 (global-set-key [?\M-/] 'hippie-expand)))
f617db13 499
cadc9736
MW
500(eval-after-load "dired"
501 '(progn
8cb828d5
MW
502 (or (lookup-key dired-mode-map [?\C-x ?\C-q])
503 (define-key dired-mode-map [?\C-x ?\C-q]
504 'wdired-change-to-wdired-mode))
d9d0aed3 505 (trap (require 'dired-x))
8cb828d5
MW
506 (and (fboundp 'dired-do-relsymlink)
507 (define-key dired-mode-map [?\C-c ?\C-s] 'dired-do-relsymlink))))
cadc9736 508
16fe7c41
MW
509(add-hook 'org-mode-hook
510 #'(lambda () (mdw-clobber-evil-keymap org-mode-map)))
511(add-hook 'org-agenda-mode-hook
512 #'(lambda () (mdw-clobber-evil-keymap org-agenda-mode-map)))
f351e828 513(or mdw-fast-startup
f6cd49f1
MW
514 (trap (progn
515 (org-remember-insinuate)
4b2b71b0 516 (global-set-key [?\C-c ?o ?r] 'org-remember))))
4849ea18 517
9b63bcd2
MW
518;; Minor mode listing
519
520(setq minor-mode-alist
521 (mdw-uniquify-alist '((reveal-mode (hs-minor-mode
522 " hs/r"
523 (global-reveal-mode
524 "" " Reveal")))
525 (hs-minor-mode (reveal-mode "" " hs"))
526 (abbrev-mode "")
527 (gtags-mode ""))
528 minor-mode-alist))
529
6132bc01 530;; Recognising types of files.
f617db13
MW
531
532(setq auto-mode-alist
533 (append `(("\\.p[lm]$" . perl-mode)
534 ("\\.m$" . objc-mode)
535 ("\\.mxd$" . c-mode)
e6cb5770 536 ("\\.cs$" . csharp-mode)
07965a39 537 ("\\.go$" . go-mode)
133cf81d 538 ("\\.org$" . org-mode)
10ac316c 539 ("\\.make$" . makefile-mode)
05f15fd7 540 ("\\.mk?d$" . markdown-mode)
f617db13
MW
541 ;; ("/[ch]/" . c-mode)
542 (,(concat "/\\("
543 "\\.stgit\\.msg" "\\|"
03372583 544 "\\.topmsg" "\\|"
f617db13
MW
545 "\\.git/COMMIT_EDITMSG" "\\|"
546 "svn-commit\\.tmp" "\\|"
547 "svk-commit[^/.]*\\.tmp"
548 "\\)$")
549 . text-mode)
550 (,(concat "^" tmpdir "/\\("
551 "svk-commit[^/.]*\\.tmp" "\\|"
552 "gitci\\.[^/.]*" "\\|"
553 "cvs[^/.]\\{6\\}" "\\|"
400223a1 554 "quilt_header\.[^/.]\\{6\\}"
f617db13
MW
555 "\\)$")
556 . text-mode)
557 ("\\.calc?$" . apcalc-mode)
558 ("/src/linux/.*\\.\\(c\\|h\\|cc\\)$" . linux-c-mode)
559 ("/\\(s\\|sh\\)/" . arm-assembler-mode)
560 ("\\.\\(cmd\\|exec\\|rexx\\)$" . rexx-mode)
561 ("\\.st$" . smalltalk-mode)
1e52f579
MW
562 ("\\.msgs$" . messages-mode)
563 ("/all-cmds\\.in$" . cpp-messages-mode)
f617db13
MW
564 ("\\.\\(tex\\|dtx\\)$" . latex-mode)
565 ("\\.gc$" . haskell.-mode)
566 (,(concat "^" (getenv "HOME") "/News/") . mdwmail-mode)
870778ff 567 (,(concat "^" tmpdir "/\\(SLRN\\|snd\\|pico\\|mutt\\)")
f617db13
MW
568 . mdwmail-mode))
569 auto-mode-alist))
570
27cb4215 571(setq interpreter-mode-alist
8b064239 572 (append `(("runlisp" . lisp-mode)
9a60965e 573 ("@BASH@" . sh-mode)
8b064239
MW
574 ("@PYTHON@" . python-mode)
575 ("@PERL@" . perl-mode)
576 ("@TCLSH@" . tcl-mode)
6905514a
MW
577 ("@WISH@" . tcl-mode)
578 ("/tclsh" . tcl-mode)
579 ("/wish" . tcl-mode))
27cb4215
MW
580 interpreter-mode-alist))
581
f617db13
MW
582(setq completion-ignored-extensions
583 (append `(".hc" ".hi") completion-ignored-extensions))
298fab5b
MW
584(dolist (dir (remove-if-not (lambda (ext)
585 (= (aref ext (- (length ext) 1)) ?/))
586 completion-ignored-extensions))
587 (if (/= (aref dir 0) ?/)
588 (setq completion-ignored-extensions
589 (cons (concat "/" dir)
590 (remove dir completion-ignored-extensions)))))
f617db13 591
6132bc01 592;; Some common local definitions.
f617db13
MW
593
594(make-variable-buffer-local 'mdw-auto-indent)
595
32194bba
MW
596(mapc (lambda (hook) (add-hook hook 'mdw-misc-mode-config))
597 '(c-mode-hook c++-mode-hook objc-mode-hook java-mode-hook
ad305d7e 598 csharp-mode-hook perl-mode-hook cperl-mode-hook dylan-mode-hook
32194bba 599 python-mode-hook pyrec-mode-hook icon-mode-hook awk-mode-hook
c24a0acd
MW
600 tcl-mode-hook go-mode-hook js-mode-hook javascript-mode-hook
601 conf-mode-hook m4-mode-hook autoconf-mode-hook autotest-mode-hook
81fb08fc 602 a68-mode-hook a68-mode-hooks asm-mode-hook fsharp-mode-hook
ee7c3dea 603 scala-mode-hook TeX-mode-hook LaTeX-mode-hook
32194bba
MW
604 TeXinfo-mode-hook tex-mode-hook latex-mode-hook
605 texinfo-mode-hook emacs-lisp-mode-hook scheme-mode-hook
606 lisp-mode-hook lisp-interaction-mode-hook makefile-mode-hook
607 inferior-lisp-mode-hook slime-repl-mode-hook
608 sml-mode-hook haskell-mode-hook erlang-mode-hook
609 smalltalk-mode-hook rexx-mode-hook
610 arm-assembler-mode-hook))
f617db13
MW
611
612(global-font-lock-mode t)
613(defalias 'perl-mode 'cperl-mode)
614
6132bc01
MW
615;;;--------------------------------------------------------------------------
616;;; Rootly editingness.
f617db13
MW
617
618(eval-after-load "tramp"
ae7460d4 619 '(let ((fix-args (if (mdw-version-< tramp-version "2.1")
507ebf80 620 #'append #'list)))
f617db13
MW
621 (setq tramp-methods
622 (mdw-uniquify-alist
623 `(("become"
624 (tramp-connection-function tramp-open-connection-su)
625 (tramp-remote-sh "/bin/sh")
626 (tramp-login-program "become")
627 (tramp-copy-program nil)
628 (tramp-copy-args nil)
629 (tramp-copy-keep-date-arg nil)
ae7460d4 630 (tramp-login-args ,(funcall fix-args `("TERM=dumb" "%u"))))
f617db13
MW
631 ("really"
632 (tramp-connection-function tramp-open-connection-su)
633 (tramp-login-program "really")
ae7460d4
MW
634 (tramp-login-args ,(funcall fix-args
635 `("-u" "%u")
636 `("--")
637 `("env" "TERM=dumb" "/bin/sh")))
f617db13
MW
638 (tramp-copy-program nil)
639 (tramp-copy-args nil)
640 (tramp-copy-keep-date-arg nil)
641 (tramp-remote-sh "/bin/sh"))
642 ,@tramp-methods)))
f617db13 643 (setq tramp-default-method "ssh")
415c9a27
MW
644 (let ((rootlyness (cond ((executable-find "really") "really")
645 ((executable-find "become") "become")
646 ((executable-find "sudo") "sudo")
ac667d04
MW
647 (t "su")))
648 (this-host (concat "\\`\\(localhost\\|"
649 (system-name) "\\|\\)\\'"))
650 (this-user (concat "\\`\\(" (user-login-name) "\\|"
651 (user-real-login-name) "\\|\\)\\'")))
415c9a27 652 (setq tramp-default-method-alist
ac667d04
MW
653 `((,this-host nil ,rootlyness)
654 (nil ,this-user "ssh")
655 (nil "." ,rootlyness)))
656 (setq tramp-default-proxies-alist
657 `((,this-host nil nil)
658 (nil "." "/ssh:%h:"))))))
f617db13 659
6132bc01
MW
660;;;--------------------------------------------------------------------------
661;;; General fontification.
f617db13 662
6132bc01 663;; Configure lazy fontification.
f617db13 664
f29cc9b2
MW
665(and (fboundp 'lazy-lock-mode)
666 (setq font-lock-support-mode 'lazy-lock-mode))
f617db13 667; (setq lazy-lock-defer-contextually t)
f9d83bff
MW
668(setq lazy-lock-defer-time nil
669 font-lock-maximum-decoration 3
670 lazy-lock-minimum-size 0
671 lazy-lock-stealth-time 5
672 lazy-lock-stealth-lines 100
673 lazy-lock-stealth-verbose t)
f617db13 674
f9d83bff
MW
675(progn
676 (add-hook 'c-mode-hook 'mdw-fontify-c-and-c++ t)
677 (add-hook 'objc-mode-hook 'mdw-fontify-c-and-c++ t)
678 (add-hook 'c++-mode-hook 'mdw-fontify-c-and-c++ t)
679 (add-hook 'linux-c-mode-hook #'(lambda () (setq c-basic-offset 8)))
680 (add-hook 'asm-mode-hook 'mdw-fontify-asm t)
07965a39 681 (add-hook 'go-mode-hook 'mdw-fontify-go t)
f617db13 682
f9d83bff 683 (add-hook 'icon-mode-hook 'mdw-fontify-icon t)
f617db13 684
f9d83bff
MW
685 (add-hook 'apcalc-mode-hook 'mdw-misc-mode-config t)
686 (add-hook 'apcalc-mode-hook 'mdw-fontify-apcalc t)
cc1980e1 687
f9d83bff 688 (add-hook 'java-mode-hook 'mdw-fontify-java t)
52bcde59 689 (add-hook 'scala-mode-hook 'mdw-fontify-scala t)
61d63206 690 (add-hook 'js-mode-hook 'mdw-fontify-javascript t)
f9d83bff 691 (add-hook 'csharp-mode-hook 'mdw-fontify-csharp t)
81fb08fc
MW
692 (add-hook 'fsharp-mode-hook 'mdw-fontify-fsharp t)
693 (add-hook 'inferior-fsharp-mode-hooks 'mdw-fontify-inferior-fsharp t)
f617db13 694
f9d83bff 695 (add-hook 'awk-mode-hook 'mdw-fontify-awk t)
f617db13 696
f9d83bff
MW
697 (add-hook 'perl-mode-hook 'mdw-fontify-perl t)
698 (add-hook 'cperl-mode-hook 'mdw-fontify-perl t))
f617db13 699
f9d83bff
MW
700(progn
701 (setq-default py-indent-offset 2
85e430d4 702 python-indent 2
f9d83bff
MW
703 py-python-command-args
704 `("-i" "-colors" ,(if mdw-black-background
705 "Linux" "LightBG")))
706 (add-hook 'python-mode-hook 'mdw-fontify-python t)
707 (add-hook 'pyrex-mode-hook 'mdw-fontify-pyrex t))
f617db13
MW
708
709(setq-default tcl-indent-level 2)
710(add-hook 'tcl-mode-hook 'mdw-fontify-tcl t)
711
712(add-hook 'rexx-mode-hook 'mdw-fontify-rexx t)
713
f9d83bff
MW
714(setq sml-nested-if-indent t
715 sml-case-indent nil
716 sml-indent-level 4
717 sml-type-of-indent nil)
f617db13
MW
718(add-hook 'sml-mode-hook 'mdw-fontify-sml t)
719
720(add-hook 'haskell-mode-hook 'mdw-fontify-haskell t)
721(setq-default haskell-indent-offset 2)
722
2ded9493
MW
723(add-hook 'erlang-mode-hook 'mdw-fontify-erlang t)
724
f617db13
MW
725(add-hook 'texinfo-mode-hook 'mdw-fontify-texinfo t)
726(add-hook 'TeXinfo-mode-hook 'mdw-fontify-texinfo t)
727
728(setq LaTeX-table-label "tbl:")
f617db13
MW
729(setq TeX-auto-untabify nil)
730(add-hook 'TeX-mode-hook 'mdw-fontify-tex t)
731(add-hook 'tex-mode-hook 'mdw-fontify-tex t)
732(add-hook 'LaTeX-mode-hook 'mdw-fontify-tex t)
733(add-hook 'latex-mode-hook 'mdw-fontify-tex t)
734
735(add-hook 'sh-mode-hook #'mdw-setup-sh-script-mode)
ec007bea 736(add-hook 'autoconf-mode-hook #'mdw-setup-m4)
32194bba 737(add-hook 'autotest-mode-hook #'mdw-setup-m4)
ec007bea 738(add-hook 'm4-mode-hook #'mdw-setup-m4)
f617db13
MW
739
740(add-hook 'smalltalk-mode-hook 'mdw-fontify-smalltalk t)
741(add-hook 'smalltalk-mode-hook 'mdw-setup-smalltalk t)
742
7fce54c3
MW
743(add-hook 'a68-mode-hook 'mdw-fontify-algol-68 t)
744(add-hook 'a68-mode-hooks 'mdw-fontify-algol-68 t)
ad305d7e
MW
745(add-hook 'dylan-mode-hook 'mdw-fontify-dylan t)
746
f9d83bff
MW
747(progn
748 (add-hook 'emacs-lisp-mode-hook 'mdw-fontify-lispy t)
749 (add-hook 'scheme-mode-hook 'mdw-fontify-lispy t)
750 (add-hook 'lisp-mode-hook 'mdw-fontify-lispy t)
751 (add-hook 'inferior-lisp-mode-hook 'mdw-fontify-lispy t)
752 (add-hook 'lisp-interaction-mode-hook 'mdw-fontify-lispy t)
753 (add-hook 'slime-repl-mode-hook 'mdw-fontify-lispy t)
754 (add-hook 'lisp-mode-hook 'mdw-common-lisp-indent t)
755 (add-hook 'inferior-lisp-mode-hook
f617db13 756 #'(lambda ()
f9d83bff 757 (local-set-key "\C-m" 'comint-send-and-indent)) t))
f617db13
MW
758
759(add-hook 'text-mode-hook 'mdw-text-mode t)
760
6132bc01
MW
761;;;--------------------------------------------------------------------------
762;;; TeX stuff.
e9955c63
MW
763
764(setq TeX-output-view-style
765 '(("^dvi$"
766 ("^landscape$" "^pstricks$\\|^pst-\\|^psfrag$")
767 "%(o?)dvips -t landscape %d -o && evince %f")
768 ("^dvi$" "^pstricks$\\|^pst-\\|^psfrag$"
769 "%(o?)dvips %d -o && evince %f")
770 ("^dvi$"
771 ("^a4\\(?:dutch\\|paper\\|wide\\)\\|sem-a4$" "^landscape$")
772 "%(o?)xdvi %dS -paper a4r -s 0 %d")
773 ("^dvi$" "^a4\\(?:dutch\\|paper\\|wide\\)\\|sem-a4$"
774 "%(o?)xdvi %dS -paper a4 %d")
775 ("^dvi$"
776 ("^a5\\(?:comb\\|paper\\)$" "^landscape$")
777 "%(o?)xdvi %dS -paper a5r -s 0 %d")
778 ("^dvi$" "^a5\\(?:comb\\|paper\\)$" "%(o?)xdvi %dS -paper a5 %d")
779 ("^dvi$" "^b5paper$" "%(o?)xdvi %dS -paper b5 %d")
780 ("^dvi$" "^letterpaper$" "%(o?)xdvi %dS -paper us %d")
781 ("^dvi$" "^legalpaper$" "%(o?)xdvi %dS -paper legal %d")
782 ("^dvi$" "^executivepaper$" "%(o?)xdvi %dS -paper 7.25x10.5in %d")
783 ("^dvi$" "." "%(o?)xdvi %dS %d")
784 ("^pdf$" "." "evince %o")
785 ("^html?$" "." "netscape %o")))
786
88daf8fb
MW
787(setq TeX-view-program-selection
788 '(((output-dvi style-pstricks) "dvips and gv")
789 (output-dvi "xdvi")
790 (output-pdf "Evince")
791 (output-html "xdg-open")))
792
b615028c
MW
793(setq TeX-open-quote "\""
794 TeX-close-quote "\"")
795
ad21c20c
MW
796(setq reftex-use-external-file-finders t
797 reftex-auto-recenter-toc t)
798
799(setq reftex-label-alist
800 '(("theorem" ?T "th:" "~\\ref{%s}" t ("theorems?" "th\\.") -2)
801 ("axiom" ?A "ax:" "~\\ref{%s}" t ("axioms?" "ax\\.") -2)
802 ("definition" ?D "def:" "~\\ref{%s}" t ("definitions?" "def\\.") -2)
803 ("proposition" ?P "prop:" "~\\ref{%s}" t
804 ("propositions?" "prop\\.") -2)
4458f45a 805 ("lemma" ?L "lem:" "~\\ref{%s}" t ("lemmas?" "lem\\.") -2)
ad21c20c
MW
806 ("example" ?X "eg:" "~\\ref{%s}" t ("examples?") -2)
807 ("exercise" ?E "ex:" "~\\ref{%s}" t ("exercises?" "ex\\.") -2)
808 ("enumerate" ?i "i:" "~\\ref{%s}" item ("items?"))))
809(setq reftex-section-prefixes
810 '((0 . "part:")
811 (1 . "ch:")
812 (t . "sec:")))
55f80fae 813
cfabf52c
MW
814(setq bibtex-field-delimiters 'double-quotes
815 bibtex-entry-format '(realign opts-or-alts required-fields
816 numerical-fields last-comma delimiters
817 unify-case)
818 bibtex-include-OPTkey nil)
819
6132bc01
MW
820;;;--------------------------------------------------------------------------
821;;; SLIME setup.
c70671f3 822
ea8a749b
MW
823(trap
824 (if (not mdw-fast-startup)
825 (progn
826 (require 'slime-autoloads)
827 (slime-setup '(slime-autodoc slime-c-p-c)))))
828
c70671f3
MW
829(let ((stuff '((cmucl ("cmucl"))
830 (sbcl ("sbcl") :coding-system utf-8-unix)
831 (clisp ("clisp") :coding-system utf-8-unix))))
832 (or (boundp 'slime-lisp-implementations)
833 (setq slime-lisp-implementations nil))
834 (while stuff
835 (let* ((head (car stuff))
836 (found (assq (car head) slime-lisp-implementations)))
837 (setq stuff (cdr stuff))
838 (if found
839 (rplacd found (cdr head))
840 (setq slime-lisp-implementations
841 (cons head slime-lisp-implementations))))))
842(setq slime-default-lisp 'sbcl)
843
6132bc01
MW
844;;;--------------------------------------------------------------------------
845;;; Blogging.
362f6ac4
MW
846
847(setq weblogger-config-alist
848 '(("vox"
849 ("user" . "mdw")
850 ("server-url" . "http://vox.distorted.org.uk/admin/mt-xmlrpc.cgi")
851 ("weblog" . "1"))))
852
6132bc01
MW
853;;;--------------------------------------------------------------------------
854;;; Shell mode.
f617db13 855
6132bc01 856;; Make the shell mode aware of my prompt.
f617db13 857
ac4ae7cd 858(setq shell-prompt-pattern "^[^]#$%>»}\n]*\\([]#$%»}]\\|>>?\\) *")
f617db13 859(setq comint-password-prompt-regexp
ab9e097f 860 (concat "\\(\\([Ee]nter \\|[Oo]ld \\|[Nn]ew \\|[a-zA-Z0-9_]*'s \\|^\\)"
c70b4880 861 "[Pp]assword\\|[Pp]ass ?phrase\\(\\| [-a-zA-Z0-9._]+\\)\\):")
423716a6
MW
862 comint-file-name-chars "~/A-Za-z0-9+@:_.$#%,={}-"
863 shell-file-name-chars comint-file-name-chars)
f617db13 864
6132bc01 865;; Notice passwords, and make C-a work right.
f617db13
MW
866
867(add-hook 'shell-mode-hook #'mdw-sh-mode-setup)
21409787 868(add-hook 'shell-mode-hook #'ansi-color-for-comint-mode-on)
0805d57c 869(setq shell-font-lock-keywords nil)
f617db13
MW
870
871(add-hook 'term-mode-hook #'mdw-term-mode-setup)
872
6132bc01
MW
873;;;--------------------------------------------------------------------------
874;;; Finishing touches.
f617db13
MW
875
876(trap (select-window mdw-init-window))
877(provide 'emacs-init)
878
f617db13 879;;;----- That's all, folks --------------------------------------------------