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