chiark / gitweb /
dot/emacs: Remove VCS directories from `completion-ignored-extensions'
[profile] / dot / emacs
1 ;;; -*- mode: emacs-lisp; coding: utf-8 -*-
2 ;;;
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
27 ;;;--------------------------------------------------------------------------
28 ;;; Some random initialisation.
29
30 (setq mdw-init-window (selected-window))
31
32 ;; Load some other bits of code.
33
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)
39 (maybe-autoload 'git-blame-mode "git-blame" nil t)
40 (maybe-autoload 'stgit "stgit" nil t)
41 (maybe-autoload 'nc-timesheet-prepare "nc-timesheet" nil t nil)
42 (maybe-autoload 'nc-timesheet-submit "nc-timesheet" nil t nil)
43
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
55 (and (library-exists-p "vc-git")
56      (not (memq 'GIT vc-handled-backends))
57      (not (memq 'Git vc-handled-backends))
58      (not (memq 'git vc-handled-backends))
59      (setq vc-handled-backends (cons 'GIT vc-handled-backends)))
60
61 (trap (or mdw-fast-startup (require 'p4)))
62
63 (trap (or mdw-fast-startup (require 'tex-site)))
64
65 (trap (or mdw-fast-startup (semantic-load-enable-minimum-features)))
66 (setq semanticdb-default-save-directory "~/.emacs.d/semanticdb/")
67
68 ;; Skeleton stuff.
69
70 (trap (or mdw-fast-startup (require 'skel-init)))
71
72 ;; Window system-dependent things.
73
74 (require 'paren)
75 (trap (show-paren-mode t))
76 (or window-system (menu-bar-mode -1))
77
78 ;; Temporary directory handling.
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
88 ;; Emacs server behaviour.
89
90 (and (or window-system (>= emacs-major-version 23))
91      (progn (setq server-temp-file-regexp (concat "^" tmpdir "\\|/draft$")
92                   gnuserv-frame t)
93             (trap (server-start))))
94
95 ;; Control backup behaviour.
96
97 (setq backup-by-copying nil)
98 (setq backup-by-copying-when-linked t)
99 (setq backup-by-copying-when-mismatch t)
100
101 (setq mdw-backup-disable-regexps
102       '("/\\.git/COMMIT_EDITMSG$"
103         "/\\.stgit\\(-edit\\.txt\\|msg\\.txt\\|\\.msg\\)$"))
104
105 ;; Safe variables.
106
107 (setq safe-local-variable-values
108       '((make-backup-files . nil)))
109
110 ;; Calculator fiddling.
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
125 (setq sendmail-program "~/bin/sendmail-hack")
126
127 (setq mail-user-agent 'message-user-agent
128       read-mail-command 'gnus)
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 ">")))))
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
147     (trap (bbdb-initialize 'gnus 'sendmail 'message)))
148 (setq bbdb-north-american-phone-numbers-p nil)
149
150 ;; Customization.
151
152 (setq custom-file "~/.emacs-custom")
153 (trap (load custom-file))
154
155 (trap (load "~/.emacs-local"))
156
157 ;; Internationalization twiddling.
158
159 (trap
160   ;; Have top-bit-set characters work properly in terminals.
161   (let ((im (current-input-mode)))
162     (apply #'set-input-mode
163            (nconc (list (nth 0 im) (nth 1 im) 0) (nthcdr 3 im)))))
164
165 ;; Don't disable any commands.
166
167 (mapatoms #'(lambda (sym) (put sym 'disabled nil)))
168
169 ;; Split a wide window.
170
171 (mdw-divvy-window)
172
173 ;; Postscript printing.
174
175 (setq ps-paper-type 'a4
176       ps-print-color-p nil
177       ps-landscape-mode t
178       ps-number-of-columns 2
179       ps-font-family 'Courier
180       ps-font-size 6.5)
181
182 ;; Splash screen stuff.
183
184 (or window-system
185     (setq inhibit-splash-screen t
186           inhibit-startup-message t))
187
188 ;; Other goodies.
189
190 (trap (resize-minibuffer-mode 1))       ;Make minibuffer grow dynamically
191 (auto-compression-mode 1)               ;Enable automatic compression
192 (setq enable-local-variables :safe
193       enable-local-eval nil)
194 (setq dabbrev-case-replace nil)         ;Retain case when completing
195 (setq linum-format "%7d ")
196 (setq next-line-add-newlines nil)       ;Don't add weird newlines
197 (setq split-height-threshold 45)        ;Reuse windows where sensible
198 (setq display-buffer-reuse-frames nil   ;Don't confuse me by showing buffers
199       iswitchb-default-method 'samewindow) ;in other random frames
200 (setq dired-deletion-confirmer          ;Make deletion easier in dired
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)
204 (setq read-quoted-char-radix 16)        ;C-q HEX-STUFF [RET]
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)
210 (setq default-indicate-empty-lines t)
211 (setq whitespace-style
212       '(trailing space-before-tab space-after-tab empty indentation))
213 (setq woman-use-own-frame nil           ;Keep man pages somewhere sensible
214       woman-fill-column 72)             ;Right margin position.
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"))
221 (setq bookmark-save-flag 0)             ;Save bookmarks automatically
222 (setq x-gtk-file-dialog-help-text nil)
223 (setq Info-fontify-maximum-menu-size 100000)
224 (setq set-mark-command-repeat-pop t)
225 (setq password-cache-expiry nil)
226 (setq-default proced-filter 'all
227               proced-sort 'user)
228 (setq ispell-program-name "aspell"
229       ispell-local-dictionary "en_GB-ize-w_accents"
230       flyspell-default-dictionary "en_GB-ize-w_accents"
231       ispell-silently-savep t)
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)
237 (setq mark-even-if-inactive t)
238 (trap
239   (tooltip-mode 0)
240   (tool-bar-mode 0))
241 (trap (or mdw-fast-startup (global-auto-revert-mode t)))
242 (setq psgml-html-build-new-buffer nil)
243
244 (defvar mdw-black-background t)
245
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)))
251
252 (setq cltl2-root-url (mdw-config 'cltl-url))
253 (setq common-lisp-hyperspec-root (mdw-config 'hyperspec-url))
254
255 ;;;--------------------------------------------------------------------------
256 ;;; W3 and URL fetching stuff.
257
258 (let ((proxy (mdw-config 'http-proxy)))
259   (setq url-proxy-services
260         `(("http" . ,proxy)
261           ("ftp" . ,proxy)
262           ("gopher" . ,proxy))))
263 (setq url-cookie-untrusted-urls '("."))
264
265 (setq browse-url-browser-function (mdw-good-url-browser)
266       browse-url-mozilla-program "firefox")
267
268 (setq w3m-default-display-inline-images t)
269
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)
275
276 ;;;--------------------------------------------------------------------------
277 ;;; Calendar configuration.
278
279 (setq diary-file "~/etc/diary")
280
281 ;; Trivial stuff for the sunrise/sunset calculations.
282
283 (setq calendar-latitude 52.2)
284 (setq calendar-longitude 0.1)
285 (setq calendar-location-name "Cambridge, UK")
286
287 ;; Holidays.
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
295 ;; Date format fiddling.
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
307 ;; Fancy diary handling.
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
315 ;; Appointment management.
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
322 ;; Org-mode agenda.
323
324 (setq org-agenda-include-diary t
325       org-tags-column -77)
326
327 ;; Cosmetic stuff.
328
329 (setq display-time-24hr-format t)
330 (display-time)
331 (column-number-mode 1)
332 (trap
333   (if window-system
334       (let ((view-diary-entries-initially t))
335         (calendar))))
336
337 ;;;--------------------------------------------------------------------------
338 ;;; MailCrypt.
339
340 ;; Define more mode hooks for MailCrypt.
341
342 (setq mdw-mc-modes
343       '((mdwmail-mode (encrypt . mdwmail-mc-encrypt)
344                       (sign . mdwmail-mc-sign))))
345
346 ;; Load the MailCrypt support.
347
348 (trap
349   (and (string-match "linux" (symbol-name system-type))
350        (not mdw-fast-startup)
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
367 ;;;--------------------------------------------------------------------------
368 ;;; Other common declarations.
369
370 ;; Default frame size.
371
372 (setq default-frame-alist
373       (mdw-uniquify-alist
374        '((width . 78)
375          (height . 33)
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"))
383        (if mdw-black-background
384            '((background-mode . dark))
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))))
391
392 ;; Other frame fiddling.
393
394 (setq frame-title-format '("" invocation-name "@" system-name ": %b"))
395
396 ;; Global keymap changes.
397
398 (trap
399   (windmove-default-keybindings))
400 (setq windmove-wrap-around t)
401 (trap (iswitchb-mode))
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)))
441
442 (eval-after-load "dired"
443   '(progn
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))))
449
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)))
454 (or mdw-fast-startup
455     (progn
456       (org-remember-insinuate)
457       (global-set-key [?\C-c ?r] 'org-remember)))
458
459 ;; Recognising types of files.
460
461 (setq auto-mode-alist
462       (append `(("\\.p[lm]$" . perl-mode)
463                 ("\\.m$" . objc-mode)
464                 ("\\.mxd$" . c-mode)
465                 ("\\.cs$" . csharp-mode)
466                 ("\\.go$" . go-mode)
467                 ("\\.org$" . org-mode)
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\\}" "\\|"
480                           "quilt_header\.[^/.]\\{6\\}"
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)
488                 ("\\.msgs$" . messages-mode)
489                 ("/all-cmds\\.in$" . cpp-messages-mode)
490                 ("\\.\\(tex\\|dtx\\)$" . latex-mode)
491                 ("\\.gc$" . haskell.-mode)
492                 (,(concat "^" (getenv "HOME") "/News/") . mdwmail-mode)
493                 (,(concat "^" tmpdir "/\\(SLRN\\|snd\\|pico\\|mutt\\)")
494                  . mdwmail-mode))
495               auto-mode-alist))
496
497 (setq interpreter-mode-alist
498       (append `(("runlisp" . lisp-mode))
499               interpreter-mode-alist))
500
501 (setq completion-ignored-extensions
502       (append `(".hc" ".hi") completion-ignored-extensions))
503 (dolist (dir (remove-if-not (lambda (ext)
504                               (= (aref ext (- (length ext) 1)) ?/))
505                             completion-ignored-extensions))
506   (if (/= (aref dir 0) ?/)
507       (setq completion-ignored-extensions
508             (cons (concat "/" dir)
509                   (remove dir completion-ignored-extensions)))))
510
511 ;; Some common local definitions.
512
513 (make-variable-buffer-local 'mdw-auto-indent)
514
515 (mapcar (lambda (hook) (add-hook hook 'mdw-misc-mode-config))
516         '(c-mode-hook c++-mode-hook objc-mode-hook java-mode-hook
517           csharp-mode-hook perl-mode-hook cperl-mode-hook
518           python-mode-hook pyrec-mode-hook icon-mode-hook awk-mode-hook
519           tcl-mode-hook go-mode-hook
520           asm-mode-hook TeX-mode-hook LaTeX-mode-hook
521           TeXinfo-mode-hook tex-mode-hook latex-mode-hook
522           texinfo-mode-hook emacs-lisp-mode-hook scheme-mode-hook
523           lisp-mode-hook lisp-interaction-mode-hook
524           inferior-lisp-mode-hook slime-repl-mode-hook
525           sml-mode-hook haskell-mode-hook erlang-mode-hook
526           smalltalk-mode-hook rexx-mode-hook
527           arm-assembler-mode-hook))
528
529 (global-font-lock-mode t)
530 (defalias 'perl-mode 'cperl-mode)
531
532 ;;;--------------------------------------------------------------------------
533 ;;; Rootly editingness.
534
535 (eval-after-load "tramp"
536   '(let ((fix-args (if (mdw-version-< tramp-version "2.1")
537                        #'append #'list)))
538      (setq tramp-methods
539            (mdw-uniquify-alist
540             `(("become"
541                (tramp-connection-function tramp-open-connection-su)
542                (tramp-remote-sh "/bin/sh")
543                (tramp-login-program "become")
544                (tramp-copy-program nil)
545                (tramp-copy-args nil)
546                (tramp-copy-keep-date-arg nil)
547                (tramp-login-args ,(funcall fix-args `("TERM=dumb" "%u"))))
548               ("really"
549                (tramp-connection-function tramp-open-connection-su)
550                (tramp-login-program "really")
551                (tramp-login-args ,(funcall fix-args
552                                            `("-u" "%u")
553                                            `("--")
554                                            `("env" "TERM=dumb" "/bin/sh")))
555                (tramp-copy-program nil)
556                (tramp-copy-args nil)
557                (tramp-copy-keep-date-arg nil)
558                (tramp-remote-sh "/bin/sh"))
559               ,@tramp-methods)))
560      (setq tramp-default-method "ssh")
561      (setq tramp-default-method-alist
562            `(("\\`\\(localhost\\|\\)\\'" ""
563               ,(cond ((executable-find "become") "become")
564                      ((executable-find "really") "really")
565                      (t "su")))))))
566
567 ;;;--------------------------------------------------------------------------
568 ;;; General fontification.
569
570 ;; Configure lazy fontification.
571
572 (and (fboundp 'lazy-lock-mode)
573      (setq font-lock-support-mode 'lazy-lock-mode))
574 ; (setq lazy-lock-defer-contextually t)
575 (setq lazy-lock-defer-time nil
576       font-lock-maximum-decoration 3
577       lazy-lock-minimum-size 0
578       lazy-lock-stealth-time 5
579       lazy-lock-stealth-lines 100
580       lazy-lock-stealth-verbose t)
581
582 (progn
583   (add-hook 'c-mode-hook 'mdw-fontify-c-and-c++ t)
584   (add-hook 'objc-mode-hook 'mdw-fontify-c-and-c++ t)
585   (add-hook 'c++-mode-hook 'mdw-fontify-c-and-c++ t)
586   (add-hook 'linux-c-mode-hook #'(lambda () (setq c-basic-offset 8)))
587   (add-hook 'asm-mode-hook 'mdw-fontify-asm t)
588   (add-hook 'go-mode-hook 'mdw-fontify-go t)
589
590   (add-hook 'icon-mode-hook 'mdw-fontify-icon t)
591
592   (add-hook 'apcalc-mode-hook 'mdw-misc-mode-config t)
593   (add-hook 'apcalc-mode-hook 'mdw-fontify-apcalc t)
594
595   (add-hook 'java-mode-hook 'mdw-fontify-java t)
596   (add-hook 'csharp-mode-hook 'mdw-fontify-csharp t)
597
598   (add-hook 'awk-mode-hook 'mdw-fontify-awk t)
599
600   (add-hook 'perl-mode-hook 'mdw-fontify-perl t)
601   (add-hook 'cperl-mode-hook 'mdw-fontify-perl t))
602
603 (progn
604   (setq-default py-indent-offset 2
605                 py-python-command-args
606                 `("-i" "-colors" ,(if mdw-black-background
607                                       "Linux" "LightBG")))
608   (add-hook 'python-mode-hook 'mdw-fontify-python t)
609   (add-hook 'pyrex-mode-hook 'mdw-fontify-pyrex t))
610
611 (setq-default tcl-indent-level 2)
612 (add-hook 'tcl-mode-hook 'mdw-fontify-tcl t)
613
614 (add-hook 'rexx-mode-hook 'mdw-fontify-rexx t)
615
616 (setq sml-nested-if-indent t
617       sml-case-indent nil
618       sml-indent-level 4
619       sml-type-of-indent nil)
620 (add-hook 'sml-mode-hook 'mdw-fontify-sml t)
621
622 (add-hook 'haskell-mode-hook 'mdw-fontify-haskell t)
623 (setq-default haskell-indent-offset 2)
624
625 (add-hook 'erlang-mode-hook 'mdw-fontify-erlang t)
626
627 (add-hook 'texinfo-mode-hook 'mdw-fontify-texinfo t)
628 (add-hook 'TeXinfo-mode-hook 'mdw-fontify-texinfo t)
629
630 (setq LaTeX-table-label "tbl:")
631 (setq TeX-auto-untabify nil)
632 (add-hook 'TeX-mode-hook 'mdw-fontify-tex t)
633 (add-hook 'tex-mode-hook 'mdw-fontify-tex t)
634 (add-hook 'LaTeX-mode-hook 'mdw-fontify-tex t)
635 (add-hook 'latex-mode-hook 'mdw-fontify-tex t)
636
637 (add-hook 'sh-mode-hook #'mdw-setup-sh-script-mode)
638 (add-hook 'autoconf-mode-hook #'mdw-setup-m4)
639 (add-hook 'm4-mode-hook #'mdw-setup-m4)
640
641 (add-hook 'smalltalk-mode-hook 'mdw-fontify-smalltalk t)
642 (add-hook 'smalltalk-mode-hook 'mdw-setup-smalltalk t)
643
644 (progn
645   (add-hook 'emacs-lisp-mode-hook 'mdw-fontify-lispy t)
646   (add-hook 'scheme-mode-hook 'mdw-fontify-lispy t)
647   (add-hook 'lisp-mode-hook 'mdw-fontify-lispy t)
648   (add-hook 'inferior-lisp-mode-hook 'mdw-fontify-lispy t)
649   (add-hook 'lisp-interaction-mode-hook 'mdw-fontify-lispy t)
650   (add-hook 'slime-repl-mode-hook 'mdw-fontify-lispy t)
651   (add-hook 'lisp-mode-hook 'mdw-common-lisp-indent t)
652   (add-hook 'inferior-lisp-mode-hook
653           #'(lambda ()
654               (local-set-key "\C-m" 'comint-send-and-indent)) t))
655
656 (add-hook 'text-mode-hook 'mdw-text-mode t)
657
658 ;;;--------------------------------------------------------------------------
659 ;;; TeX stuff.
660
661 (setq TeX-output-view-style
662       '(("^dvi$"
663          ("^landscape$" "^pstricks$\\|^pst-\\|^psfrag$")
664          "%(o?)dvips -t landscape %d -o && evince %f")
665         ("^dvi$" "^pstricks$\\|^pst-\\|^psfrag$"
666          "%(o?)dvips %d -o && evince %f")
667         ("^dvi$"
668          ("^a4\\(?:dutch\\|paper\\|wide\\)\\|sem-a4$" "^landscape$")
669          "%(o?)xdvi %dS -paper a4r -s 0 %d")
670         ("^dvi$" "^a4\\(?:dutch\\|paper\\|wide\\)\\|sem-a4$"
671          "%(o?)xdvi %dS -paper a4 %d")
672         ("^dvi$"
673          ("^a5\\(?:comb\\|paper\\)$" "^landscape$")
674          "%(o?)xdvi %dS -paper a5r -s 0 %d")
675         ("^dvi$" "^a5\\(?:comb\\|paper\\)$" "%(o?)xdvi %dS -paper a5 %d")
676         ("^dvi$" "^b5paper$" "%(o?)xdvi %dS -paper b5 %d")
677         ("^dvi$" "^letterpaper$" "%(o?)xdvi %dS -paper us %d")
678         ("^dvi$" "^legalpaper$" "%(o?)xdvi %dS -paper legal %d")
679         ("^dvi$" "^executivepaper$" "%(o?)xdvi %dS -paper 7.25x10.5in %d")
680         ("^dvi$" "." "%(o?)xdvi %dS %d")
681         ("^pdf$" "." "evince %o")
682         ("^html?$" "." "netscape %o")))
683
684 (setq TeX-open-quote "\""
685       TeX-close-quote "\"")
686
687 (setq reftex-use-external-file-finders t
688       reftex-auto-recenter-toc t)
689
690 (setq reftex-label-alist
691       '(("theorem" ?T "th:" "~\\ref{%s}" t ("theorems?" "th\\.") -2)
692         ("axiom" ?A "ax:" "~\\ref{%s}" t ("axioms?" "ax\\.") -2)
693         ("definition" ?D "def:" "~\\ref{%s}" t ("definitions?" "def\\.") -2)
694         ("proposition" ?P "prop:" "~\\ref{%s}" t
695          ("propositions?" "prop\\.") -2)
696         ("lemma" ?P "lem:" "~\\ref{%s}" t ("lemmas?" "lem\\.") -2)
697         ("example" ?X "eg:" "~\\ref{%s}" t ("examples?") -2)
698         ("exercise" ?E "ex:" "~\\ref{%s}" t ("exercises?" "ex\\.") -2)
699         ("enumerate" ?i "i:" "~\\ref{%s}" item ("items?"))))
700 (setq reftex-section-prefixes
701       '((0 . "part:")
702         (1 . "ch:")
703         (t . "sec:")))
704
705 (setq bibtex-field-delimiters 'double-quotes
706       bibtex-entry-format '(realign opts-or-alts required-fields
707                             numerical-fields last-comma delimiters
708                             unify-case)
709       bibtex-include-OPTkey nil)
710
711 ;;;--------------------------------------------------------------------------
712 ;;; SLIME setup.
713
714 (trap
715  (if (not mdw-fast-startup)
716      (progn
717        (require 'slime-autoloads)
718        (slime-setup '(slime-autodoc slime-c-p-c)))))
719
720 (let ((stuff '((cmucl ("cmucl"))
721                (sbcl ("sbcl") :coding-system utf-8-unix)
722                (clisp ("clisp") :coding-system utf-8-unix))))
723   (or (boundp 'slime-lisp-implementations)
724       (setq slime-lisp-implementations nil))
725   (while stuff
726     (let* ((head (car stuff))
727            (found (assq (car head) slime-lisp-implementations)))
728       (setq stuff (cdr stuff))
729       (if found
730           (rplacd found (cdr head))
731         (setq slime-lisp-implementations
732               (cons head slime-lisp-implementations))))))
733 (setq slime-default-lisp 'sbcl)
734
735 ;;;--------------------------------------------------------------------------
736 ;;; Blogging.
737
738 (setq weblogger-config-alist
739       '(("vox"
740          ("user" . "mdw")
741          ("server-url" . "http://vox.distorted.org.uk/admin/mt-xmlrpc.cgi")
742          ("weblog" . "1"))))
743
744 ;;;--------------------------------------------------------------------------
745 ;;; Shell mode.
746
747 ;; Make the shell mode aware of my prompt.
748
749 (setq shell-prompt-pattern "^[^]#$%>»}\n]*\\([]#$%»}]\\|>>?\\) *")
750 (setq comint-password-prompt-regexp
751       (concat "\\(\\([Ee]nter \\|[Oo]ld \\|[Nn]ew \\|[a-zA-Z0-9_]*'s \\|^\\)"
752               "[Pp]assword\\|pass phrase\\):"))
753
754 ;; Notice passwords, and make C-a work right.
755
756 (add-hook 'shell-mode-hook #'mdw-sh-mode-setup)
757 (add-hook 'shell-mode-hook #'ansi-color-for-comint-mode-on)
758 (setq shell-font-lock-keywords nil)
759
760 (add-hook 'term-mode-hook #'mdw-term-mode-setup)
761
762 ;;;--------------------------------------------------------------------------
763 ;;; Finishing touches.
764
765 (trap (select-window mdw-init-window))
766 (provide 'emacs-init)
767
768 ;;;----- That's all, folks --------------------------------------------------