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