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