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