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