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