chiark / gitweb /
dot/profile: New preferred place for Plan 9 is `/opt/plan9'.
[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 (let ((path "~/lib/emacs/")
25       (pkgs (list "bbdb/" "multiple-cursors/" "rust-mode/"))
26       pkg)
27   (setq load-path (nconc load-path (list path)))
28   (while (setq pkg (pop pkgs))
29     (let ((dir (concat path pkg)))
30       (if (file-exists-p dir)
31           (setq load-path (nconc load-path (list dir))))))
32   (let ((boot (concat path "mdw-pkgs.el")))
33     (if (file-exists-p boot)
34         (load boot))))
35
36 (require 'cl)
37 (require 'dot-emacs)
38
39 (unless (mdw-emacs-version-p 25)
40   (trap (require 'bracketed-paste) (bracketed-paste-enable)))
41
42 ;;;--------------------------------------------------------------------------
43 ;;; Some random initialisation.
44
45 (setq mdw-init-window (selected-window))
46
47 ;; Load some other bits of code.
48
49 (maybe-autoload 'cc-mode "cc-mode" nil t)
50 (maybe-autoload 'rexx-mode "rexx-mode" nil t)
51 (maybe-autoload 'cvs-update "pcl-cvs" nil t)
52 (maybe-autoload 'debian-changelog-mode "debian-changelog-mode" nil t)
53 (maybe-autoload 'git-status "git" nil t)
54 (maybe-autoload 'git-blame-mode "git-blame" nil t)
55 (maybe-autoload 'stgit "stgit" nil t)
56 (maybe-autoload 'nc-timesheet-prepare "nc-timesheet" nil t nil)
57 (maybe-autoload 'nc-timesheet-submit "nc-timesheet" nil t nil)
58 (maybe-autoload 'org-bbdb-anniversaries "org" nil t)
59
60 (and (library-exists-p "debian-changelog-mode")
61      (add-to-list 'auto-mode-alist
62                   `(,(concat "/debian/"
63                                "\\("
64                                  "[" "[:lower:]" "[:digit:]" "]"
65                                  "[" "[:lower:]" "[:digit:]" ".+-" "]+"
66                                  "\\."
67                                "\\)?"
68                                "changelog\\'")
69                     . debian-changelog-mode)))
70
71 (and (library-exists-p "vc-git")
72      (not (memq 'GIT vc-handled-backends))
73      (not (memq 'Git vc-handled-backends))
74      (not (memq 'git vc-handled-backends))
75      (setq vc-handled-backends (cons 'GIT vc-handled-backends)))
76
77 (setq magit-log-cutoff-length 512)
78 (defun mdw-magit-try-load-config-extensions ()
79   (trap (magit-load-config-extensions)))
80 (add-hook 'magit-mode-hook 'mdw-magit-try-load-config-extensions)
81
82 (trap (or mdw-fast-startup (require 'p4)))
83
84 (trap (or mdw-fast-startup (require 'tex-site)))
85
86 (trap (or mdw-fast-startup t (semantic-load-enable-code-helpers)))
87 (setq semanticdb-default-save-directory "~/.emacs.d/semanticdb/")
88 (eval-after-load "senator"
89   '(setq isearch-mode-hook
90          (remq 'senator-isearch-mode-hook isearch-mode-hook)
91          isearch-mode-end-hook
92          (remq 'senator-isearch-mode-hook isearch-mode-end-hook)))
93
94 ;; Skeleton stuff.
95
96 (trap (or mdw-fast-startup (require 'skel-init)))
97
98 ;; Window system-dependent things.
99
100 (require 'paren)
101 (trap (show-paren-mode t))
102 (or window-system (mdw-emacs-version-p 22) (menu-bar-mode -1))
103 (setq x-select-enable-clipboard nil
104       x-select-enable-primary t
105       mouse-drag-copy-region t)
106
107 ;; Multiple cursors.
108
109 (global-set-key [?\C-c ?r] 'mdw-multiple-cursors-keymap)
110 (autoload 'mdw-multiple-cursors-keymap "mdw-multiple-cursors.el"
111   "A keymap for Magnar Sveen's awesome multiple-cursors." nil 'keymap)
112
113 ;; Rust mode.
114
115 (autoload 'rust-mode "rust-mode" nil t)
116 (add-to-list 'auto-mode-alist '("\\.rs\\'" . rust-mode))
117
118 ;; Temporary directory handling.
119
120 (defun mdw-check-dir-exists (dir)
121   (and dir
122        (file-directory-p dir)
123        dir))
124 (setq tmpdir (or (mdw-check-dir-exists (getenv "TMPDIR"))
125                  (mdw-check-dir-exists (format "/tmp/%s" (user-login-name)))
126                  "/tmp"))
127
128 ;; Emacs server behaviour.
129
130 (and (or window-system (mdw-emacs-version-p 23))
131      (not mdw-fast-startup)
132      (progn (setq server-temp-file-regexp (concat "^" tmpdir "\\|/draft$")
133                   edit-server-new-frame nil
134                   gnuserv-frame t)
135             (trap (server-start))
136             (trap (progn
137                     (require 'edit-server)
138                     (edit-server-start)
139                     (let ((edit (get-process "edit-server")))
140                       (and edit
141                            (set-process-query-on-exit-flag edit nil)))))))
142
143 ;; Saving state.
144
145 (or mdw-fast-startup (savehist-mode 1))
146 (setq history-length 200)
147
148 ;; Control backup behaviour.
149
150 (setq backup-by-copying nil)
151 (setq backup-by-copying-when-linked t)
152 (setq backup-by-copying-when-mismatch t)
153
154 (setq mdw-backup-disable-regexps
155       '("/\\.git/COMMIT_EDITMSG$"
156         "/\\.stgit\\(-edit\\.txt\\|msg\\.txt\\|\\.msg\\)$"
157         "^/tmp/" "^/var/tmp/"))
158
159 ;; Safe variables.
160
161 (setq safe-local-variable-values
162       '((make-backup-files . nil)))
163
164 ;; Calculator fiddling.
165
166 (setq calc-settings-file "~/.emacs-calc")
167 (load calc-settings-file)
168
169 ;; Some mail and news configuration.
170
171 (setq mail-from-style 'angles
172       mail-signature t
173       mail-yank-prefix "> "
174       mail-archive-file-name nil
175       message-default-mail-headers "X-Auto-Response-Suppress: DR, RN, NRN, OOF\n"
176       message-default-news-headers ""
177       compose-mail-user-agent-warnings nil)
178
179 (setq rmail-display-summary t)
180 (setq rmail-file-name "~/Mail/rmail")
181
182 (setq sendmail-program "~/bin/sendmail-hack"
183       send-mail-function 'sendmail-send-it
184       mail-interactive t
185       sendmail-error-reporting-interactive '("-odb" "-oee"))
186 (autoload 'sendmail-send-it "sendmail")
187 (autoload 'smtpmail-send-it "smtpmail")
188
189 (setq mail-user-agent 'message-user-agent
190       read-mail-command 'gnus)
191 (setq message-signature-separator "^-- \\(\\|\\[mdw\\]\\)$"
192       message-yank-prefix "> "
193       message-yank-cited-prefix "> "
194       message-send-mail-function 'message-send-mail-with-sendmail
195       message-interactive t
196       message-sendmail-extra-arguments '("-odb" "-oee")
197       message-sendmail-envelope-from 'header
198       message-indent-citation-function '(message-indent-citation
199                                          mdw-trim-spaces-after-citing))
200
201 (defun mdw-trim-spaces-after-citing ()
202   (save-excursion
203     (save-restriction
204       (narrow-to-region (point) (mark t))
205       (while (re-search-forward "^> +$" nil t)
206         (replace-match ">")))))
207
208 (and (fboundp 'turn-on-gnus-dired-mode)
209      (not mdw-fast-startup)
210      (add-hook 'dired-mode-hook 'turn-on-gnus-dired-mode))
211
212 (or mdw-fast-startup
213     (trap (bbdb-initialize 'gnus 'sendmail 'message)))
214 (setq bbdb-file "~/etc/brain/bbdb"
215       bbdb-north-american-phone-numbers-p nil
216       bbdb-dwim-net-address-allow-redundancy t
217       bbdb-extract-address-components-func 'bbdb-extract-address-components
218       bbdb/news-auto-create-p
219       (lambda ()
220         (let ((group gnus-newsgroup-name))
221           (and (string-match "^nn\\(imap\\|folder\\)\\+" group)
222                (not (string-match ":\\(crap\\|spam\\|lists\\|corpus\\)\\."
223                                   group)))))
224       bbdb-user-mail-names
225       (concat "^"
226               "\\(" "\\(mdw\\|markw\\|root\\|postmaster\\)"
227                     "\\([-+][^@]*\\|\\)"
228                     "@\\(\\(dist\\|esc\\)orted\\.org\\.uk\\|odin\\.gg\\)"
229               "\\|" "\\(" "\\(mdw\\|mwooding\\)"
230                           "\\(\\+[^@]*\\)?"
231                     "\\|" "0" "\\(mdw\\|mwooding\\)" "k\\.[^@]*"
232                     "\\)" "@"
233                     "\\(chiark\\|slimy\\|coriolis\\)\\.greenend\\.org\\.uk"
234               "\\|" "distorted\\.mdw@g\\(\\|oogle\\)mail.com"
235               "\\|" "mwooding@\\(good\\|blackberry\\)\\.com"
236               "\\|" "mark\\.wooding@trustonic\\.com"
237               "\\)$")
238       bbdb-canonicalize-net-hook
239       (lambda (addr)
240         (cond ((null addr)
241                nil)
242               ((or (string-match "^mailer-daemon@" addr)
243                    (string-match "\.invalid$" addr)
244                    (string-match (concat "^reply-[0-9a-f]+-[0-9a-f]+_"
245                                          "HTML-[0-9]+-[0-9]+-[0-9]+"
246                                          "@\\(nationwide-communications\\."
247                                          "co\\.uk\\)$")
248                                  addr)
249                    (string-match (concat "^[0-9]+@bugs\\."
250                                          "\\(" "debian\\.org"
251                                          "\\|" "distorted\\.org\\.uk"
252                                          "\\)$")
253                                  addr)
254                    (string-match (concat "^MicrosoftExchange[0-9a-f]*"
255                                          "@newincco\\.onmicrosoft\\.com")
256                                  addr)
257                    (member (md5 addr)
258                            '("8815c5583970856799c85a3ee0eb6a9f" ;work wiki spam
259                              "0b94ab4d25dacaa5ac07243a09c9e22e" ;work bug spam
260                              "35fb1633379a1e4d4be3b139cae20111" ;work crucible spam
261                              ))
262                    (and (string-match "^news\\([0-9]+\\)@\\(.*\\)$" addr)
263                         (string= (md5 (match-string 2 addr))
264                                  "879b795aed959b1a000e9f95c132b16c")))
265                nil)
266               ((string-match "^\\([^@+]+\\)\\+[^@]*\\(@.*\\)$" addr)
267                (concat (match-string 1 addr) (match-string 2 addr)))
268               (t addr))))
269
270 ;; Customization.
271
272 (setq custom-file "~/.emacs-custom")
273 (trap (load custom-file))
274
275 (trap (load "~/.emacs-local"))
276
277 ;; Internationalization twiddling.
278
279 (trap
280   ;; Have top-bit-set characters work properly in terminals.
281   (let ((im (current-input-mode)))
282     (apply #'set-input-mode
283            (nconc (list (nth 0 im) (nth 1 im) 0) (nthcdr 3 im)))))
284
285 ;; Some unpleasant terminal hackery.  Screen prefixes the current terminal
286 ;; name with `screen.', and Emacs is too dim to split the name at the `.'.
287 ;; Help it out.
288
289 (defun terminal-init-screen.xterm ()
290   (tty-run-terminal-initialization (selected-frame) "screen"))
291 (defun terminal-init-screen.putty ()
292   (tty-run-terminal-initialization (selected-frame) "screen"))
293
294 ;; Don't disable any commands.
295
296 (mapatoms #'(lambda (sym) (put sym 'disabled nil)))
297
298 ;; Split a wide window.
299
300 (mdw-divvy-window)
301
302 ;; Postscript printing.
303
304 (setq ps-paper-type 'a4
305       ps-print-color-p nil
306       ps-landscape-mode t
307       ps-number-of-columns 2
308       ps-font-family 'Courier
309       ps-font-size 6.5)
310
311 ;; Splash screen stuff.
312
313 (or window-system
314     (setq inhibit-splash-screen t
315           inhibit-startup-message t))
316
317 ;; Other goodies.
318
319 (trap (resize-minibuffer-mode 1))       ;Make minibuffer grow dynamically
320 (auto-compression-mode 1)               ;Enable automatic compression
321 (setq enable-local-variables :safe
322       enable-local-eval nil)
323 (setq dabbrev-case-replace nil)         ;Retain case when completing
324 (setq linum-format "%7d ")
325 (setq next-line-add-newlines nil)       ;Don't add weird newlines
326 (setq split-height-threshold nil)       ;Reuse windows where sensible
327 (setq display-buffer-reuse-frames nil   ;Don't confuse me by showing buffers
328       iswitchb-default-method 'samewindow ;in other random frames
329       ido-default-file-method 'selected-window
330       ido-default-buffer-method 'selected-window)
331 (setq ido-enable-flex-matching t
332       ido-everywhere t
333       ido-confirm-unique-completion t
334       ido-use-filename-at-point nil
335       ido-auto-merge-work-directories-length -1)
336 (setq pcomplete-cycle-completions nil   ;Who thought that was a good idea?
337       eshell-cmpl-cycle-completions nil)
338 (setq dired-deletion-confirmer          ;Make deletion easier in dired
339       (symbol-function 'y-or-n-p)
340       dired-listing-switches "-alF"     ;Do `ls -F' things in dired windows
341       wdired-allow-to-change-permissions 'advanced)
342 (setq read-quoted-char-radix 16)        ;C-q HEX-STUFF [RET]
343 (setq case-fold-file-names nil)         ;Don't translate file names (grr...)
344 (setq scroll-step 5)                    ;Don't scroll too much at a time
345 (setq blink-cursor-blinks 0)            ;Keep blinking the cursor
346 (setq-default fill-column mdw-text-width) ;I use rather narrow windows
347 (setq reb-re-syntax 'string)            ;Enough backslashes even with this
348 (setq-default comment-column 40)        ;Set a standard comment column
349 (setq-default truncate-partial-width-windows nil
350               truncate-lines t)
351 (setq default-indicate-empty-lines t)
352 (setq view-read-only t)
353 (setq-default view-exit-action #'kill-buffer)
354 (and window-system (not mdw-fast-startup)
355      (setq confirm-kill-emacs #'yes-or-no-p))
356 (setq whitespace-style '(trailing empty indentation face lines-tail
357                          space-before-tab space-after-tab)
358       whitespace-line-column mdw-text-width)
359 (setq woman-use-own-frame nil           ;Keep man pages somewhere sensible
360       woman-fill-column 72)             ;Right margin position.
361 (setq diff-switches "-u"                ;I like reading unified diffs
362       cvs-diff-flags (list diff-switches))
363 (setq echo-keystrokes 10)               ;Long delay before keystrokes echo
364 (setq ange-ftp-ftp-program-name "pftp") ;Use passive FTP
365 (setq find-ls-option                    ;Build file lists efficiently
366       '("-print0 | xargs -0r ls -ld" . "ld"))
367 (setq bookmark-save-flag 0)             ;Save bookmarks automatically
368 (setq vc-follow-symlinks t)
369 (setq x-gtk-file-dialog-help-text nil)
370 (setq Info-fontify-maximum-menu-size 100000)
371 (setq set-mark-command-repeat-pop t)
372 (setq password-cache-expiry nil)
373 (setq-default proced-filter 'all
374               proced-sort 'user)
375 (setq ispell-program-name "aspell-hack"
376       ispell-local-dictionary "en_GB-ize-w_accents"
377       flyspell-default-dictionary "en_GB-ize-w_accents"
378       ispell-local-dictionary-alist
379       '(("en_GB-ize-w_accents" "[[:alpha:]]" "[^[:alpha:]]" "'" t
380          ("-d" "en_GB-ize-w_accents") nil utf-8))
381       ispell-silently-savep t)
382 (trap
383   (require 'uniquify)
384   (setq uniquify-buffer-name-style 'post-forward-angle-brackets)
385   (setq uniquify-after-kill-buffer-p t))
386 (transient-mark-mode t)
387 (setq mark-even-if-inactive t
388       shift-select-mode nil
389       delete-active-region nil
390       delete-selection-mode nil)
391 (trap
392   (tooltip-mode 0)
393   (tool-bar-mode 0))
394 (trap (or mdw-fast-startup (global-auto-revert-mode t)))
395 (setq psgml-html-build-new-buffer nil)
396
397 (defvar mdw-black-background t)
398
399 (eval-after-load "outline"
400   '(progn
401      (trap (require 'foldout))
402      (define-key outline-mode-prefix-map [?\C-r] 'reveal-mode)
403      (define-key outline-mode-prefix-map [?\C--] 'mdw-outline-collapse-all)))
404
405 (setq imenu-auto-rescan t
406       imenu-auto-rescan-maxout (* 128 1024)
407       imenu-max-items 60)
408
409 (setq cltl2-root-url (mdw-config 'cltl-url))
410 (setq common-lisp-hyperspec-root (mdw-config 'hyperspec-url))
411
412 (setq rfcview-rfc-location-pattern
413       "/ftp@mirror.distorted.org.uk:/pub/mirrors/rfc/rfc%s.txt"
414       rfcview-std-location-pattern
415       "/ftp@mirror.distorted.org.uk:/pub/mirrors/rfc/std/std%s.txt"
416       rfcview-index-location
417       "/ftp@mirror.distorted.org.uk:/pub/mirrors/rfc/rfc-index.txt")
418
419 ;;;--------------------------------------------------------------------------
420 ;;; W3 and URL fetching stuff.
421
422 (let ((proxy (mdw-config 'http-proxy)))
423   (setq url-proxy-services
424         `(("http" . ,proxy)
425           ("ftp" . ,proxy)
426           ("gopher" . ,proxy))))
427 (setq url-cookie-untrusted-urls '("."))
428
429 (setq browse-url-browser-function (mdw-good-url-browser)
430       browse-url-generic-program "chromium"
431       browse-url-mozilla-program "mdw-iceweasel")
432
433 (setq w3m-default-display-inline-images t
434       w3m-use-cookies t)
435
436 (eval-after-load "w3m"
437   '(let ((entries '(("application/pdf" "\\.pdf\\'" ("xdg-open" file) nil)
438                     ("application/x-pdf" "\\.pdf\\'" ("xdg-open" file) nil))))
439      (dolist (e entries)
440        (setq w3m-content-type-alist
441              (cons e (remove* (car e) w3m-content-type-alist
442                               :key #'car :test #'string=))))))
443
444 (setq w3-do-incremental-display t
445       w3-use-menus '(file edit view go bookmark options
446                      buffers style search emacs nil help)
447       w3-display-inline-image t
448       w3-keybinding 'info)
449
450 ;;;--------------------------------------------------------------------------
451 ;;; Calendar configuration.
452
453 (setq diary-file
454       (let ((main-diary "~/etc/brain/diary")
455             (index "~/etc/index.diary"))
456         (if (file-exists-p index)
457             index
458           main-diary)))
459
460 ;; Trivial stuff for the sunrise/sunset calculations.
461
462 (setq calendar-latitude 52.2)
463 (setq calendar-longitude 0.1)
464 (setq calendar-location-name "Cambridge, UK")
465
466 ;; Holidays.
467
468 (and (not mdw-fast-startup)
469      (trap
470        (require 'ew-hols)
471        (setq other-holidays (append english-and-welsh-bank-holidays
472                                     other-holidays))))
473
474 ;; Date format fiddling.
475
476 (setq european-calendar-style t
477       calendar-date-style 'european
478       calendar-time-display-form
479       '(24-hours ":" minutes
480         (if time-zone " (") time-zone (if time-zone ")")))
481
482 (setq diary-date-forms
483       '((day "[-/]" month "[^-/0-9]")
484         (day " *" monthname "[ \t]*\\(\^M\\|\n\\)")
485         (backup day " *" monthname "\\W+\\<\\([^*0-9]\\|[0-9]+[:aApP]\\)")
486         (day "[-/]" month "[-/]" year "[^0-9]")
487         (day " *" monthname " *" year "[^0-9]")
488         (year "[-/]" month "[-/]" day "[^0-9]")
489         (dayname "\\W")))
490
491 ;; Fancy diary handling.
492
493 (add-hook 'diary-display-hook 'fancy-diary-display)
494 (setq diary-list-include-blanks t)
495 (cond ((mdw-emacs-version-p 23 1)
496        (add-hook 'list-diary-entries-hook 'diary-include-other-diary-files)
497        (add-hook 'mark-diary-entries-hook 'diary-mark-included-diary-files))
498       (t
499        (add-hook 'list-diary-entries-hook 'include-other-diary-files)
500        (add-hook 'mark-diary-entries-hook 'mark-included-diary-files)))
501
502 ;; Appointment management.
503
504 (add-hook 'diary-hook 'appt-make-list)
505 (setq appt-issue-message t)
506 (setq appt-display-interval 3)
507 (setq appt-message-warning-time 10)
508 (and (not mdw-fast-startup)
509      (trap (require 'org)
510            (require 'bbdb)
511            (appt-activate 1)))
512
513 ;; Org-mode agenda.
514
515 (setq org-agenda-include-diary t
516       org-directory "~/etc/brain.local/"
517       org-default-notes-file (concat org-directory "local.org")
518       org-tags-column -77
519       org-agenda-align-tags-to-column org-tags-column)
520
521 ;; Cosmetic stuff.
522
523 (setq calendar-view-diary-initially-flag nil
524       calendar-view-holidays-initially-flag nil
525       calendar-mark-diary-entries-flag t)
526
527 (setq display-time-24hr-format t)
528 (display-time)
529 (column-number-mode 1)
530 (trap
531   (if (and window-system (not mdw-fast-startup))
532       (let ((calendar-view-diary-initially-flag t))
533         (calendar))))
534
535 ;;;--------------------------------------------------------------------------
536 ;;; MailCrypt.
537
538 ;; Define more mode hooks for MailCrypt.
539
540 (setq mdw-mc-modes
541       '((mdwmail-mode (encrypt . mdwmail-mc-encrypt)
542                       (sign . mdwmail-mc-sign))))
543
544 ;; Load the MailCrypt support.
545
546 (trap
547   (and (string-match "linux" (symbol-name system-type))
548        (not mdw-fast-startup)
549        (progn (require 'mailcrypt-init)
550               (require 'mailcrypt)
551               (setq mc-default-scheme 'mc-scheme-gpg)
552               (setq mc-pgp-user-id "mdw-nsict-pgp")
553               (setq mc-gpg-user-id "mdw-nsict-gpg")
554               (setq mc-modes-alist (append mc-modes-alist mdw-mc-modes))
555               (setq mc-pgp-always-sign t)
556               (setq mc-gpg-always-sign t)
557               (setq mc-always-replace 'never)
558               (setq mc-passwd-timeout 3600)
559               (setq mc-temp-directory tmpdir)
560               (setq mc-modes-alist (append mc-modes-alist mdw-mc-modes))
561               (define-key mc-write-mode-map "\C-c/S" 'mc-sign-region)
562               (define-key mc-write-mode-map "\C-c/E" 'mc-encrypt-region)
563               (add-hook 'text-mode-hook 'mc-install-write-mode))))
564
565 ;;;--------------------------------------------------------------------------
566 ;;; Other common declarations.
567
568 ;; Default frame size.
569
570 (setq frame-background-mode (if mdw-black-background 'dark 'light)
571       default-frame-alist
572       `((width . ,(+ mdw-column-width
573                      (if (>= emacs-major-version 21) 0 1)))
574         (height . 33)
575         (vertical-scroll-bars . right)
576         (cursor-type . bar)
577         (cursor-blink . t)
578         (left-fringe . 5)
579         (right-fringe . 5)
580         (scroll-bar-width . 15)
581         (tool-bar-lines . 0)
582         (menu-bar-lines . 1)
583         (cursor-color . "red")
584         (background-mode . ,frame-background-mode))
585       initial-frame-alist
586       `((width . ,(+ mdw-column-width
587                      (if (>= emacs-major-version 21) 0 1)))
588         (menu-bar-lines . ,(if window-system 1 0)))
589       window-system-default-frame-alist
590       '((pm (font . "-os2-System VIO-medium-r-normal--*-40-*-*-m-*-cp850")
591             (menu-font . "8.Helv")
592             (background-color . "lightgrey"))
593         (w32 (font . "fixed613 10")
594              (background-color . "black")
595              (foreground-color . "white"))
596         (nil (menu-bar-lines . 0)
597              (background-color . nil))))
598 (let ((backg (frame-parameter nil 'background-color)))
599   (if (and backg window-system)
600       (push (cons 'background-color backg) default-frame-alist)))
601
602 ;; Other frame fiddling.
603
604 (setq frame-title-format '("" invocation-name "@" system-name ": %b"))
605
606 ;; Global keymap changes.
607
608 (trap
609   (windmove-default-keybindings))
610 (setq windmove-wrap-around t)
611 (trap (require 'ido) (ido-mode 1)
612       (require 'ido-ubiquitous) (ido-ubiquitous-mode 1)
613       (setq ido-cr+-max-items nil
614             ido-ubiquitous-command-overrides
615             (append ido-ubiquitous-command-overrides
616                     `((enable-old regexp ,(concat "\\`"
617                                                   "gtags-find-"
618                                                   "\\("    "tag"
619                                                         "\\|file"
620                                                         "\\|rtag"
621                                                         "\\|symbol"
622                                                   "\\)"
623                                                   "\\(" "\\|-other-window"
624                                                   "\\)"
625                                                   "\\'")))))
626       (setq magit-completing-read-function 'magit-ido-completing-read)
627       (require 'smex) (smex-initialize) (global-set-key [?\M-x] 'smex))
628
629 (progn
630   (global-set-key [?\C-c ?\M-x] 'execute-extended-command)
631   (global-set-key [?\e ?\e] 'mdw-wrong)
632   (global-set-key [?\e ?\C-\] ?\C-\]] 'keyboard-escape-quit)
633   (global-set-key [?\C-c ?w left] 'windmove-left)
634   (global-set-key [?\C-c ?w ?h] 'windmove-left)
635   (global-set-key [?\C-c ?w up] 'windmove-up)
636   (global-set-key [?\C-c ?w ?k] 'windmove-up)
637   (global-set-key [?\C-c ?w down] 'windmove-down)
638   (global-set-key [?\C-c ?w ?j] 'windmove-down)
639   (global-set-key [?\C-c ?w right] 'windmove-right)
640   (global-set-key [?\C-c ?w ?l] 'windmove-right)
641   (global-set-key [?\C-c ?g ?l] 'org-store-link)
642   (global-set-key [?\C-c ?g ?a] 'org-agenda)
643   (global-set-key [?\C-c ?g ?b] 'org-iswitchb)
644   (global-set-key [?\C-c ?t ?i] 'timeclock-in)
645   (global-set-key [?\C-c ?t ?c] 'timeclock-change)
646   (global-set-key [?\C-c ?t ?o] 'timeclock-out)
647   (global-set-key [?\C-c ?t ?R] 'timeclock-reread-log)
648   (global-set-key [?\C-c ?t ?w] 'timeclock-workday-remaining-string)
649   (global-set-key [?\C-c ?t ?s] 'timeclock-status-string)
650   (global-set-key [?\C-c ?m ?m] 'magit-status)
651   (global-set-key [?\C-c ?m ?b] 'magit-blame)
652   (global-set-key [?\C-c ?m ?d] 'magit-dispatch-popup)
653   (global-set-key [?\C-c ?m ?f] 'magit-find-file)
654   (global-set-key [?\C-c ?m ?4 ?f] 'magit-find-file-other-window)
655   (global-set-key [?\C-c ?m ?r] 'magit-list-repositories)
656   (global-set-key [?\C-c ?m ?w] 'magit-wip-log)
657   (global-set-key [?\C-c ?p ?p] 'mdw-mpc-play-or-pause)
658   (global-set-key [?\C-c ?p ?s] 'mdw-mpc-stop)
659   (global-set-key [?\C-c ?p ?<] 'mdw-mpc-prev)
660   (global-set-key [?\C-c ?p ?>] 'mdw-mpc-next)
661   (global-set-key [?\C-c ?p ?+] 'mdw-mpc-louder)
662   (global-set-key [?\C-c ?p ?-] 'mdw-mpc-quieter)
663   (global-set-key [?\C-c ?p ??] 'mdw-mpc-now-playing)
664   (global-set-key [?\C-c ?t ?t] 'gtags-find-tag-from-here)
665   (global-set-key [?\C-c ?t ?.] 'gtags-find-tag)
666   (global-set-key [?\C-c ?t ?r] 'gtags-find-rtag)
667   (global-set-key [?\C-c ?t ?4 ?.] 'gtags-find-tag-other-window)
668   (global-set-key [?\C-c ?t ?,] 'gtags-pop-stack)
669   (global-set-key [?\C-c ?k] 'mdw-compile)
670   (global-set-key [?\C-x ?3] 'mdw-split-window-horizontally)
671   (global-set-key [?\M-#] 'calc-dispatch)
672   (global-set-key [?\C-x ?/] 'auto-fill-mode)
673   (global-set-key [?\C-c ?w ?d] 'mdw-divvy-window)
674   (global-set-key [?\C-c ?w ?w] 'mdw-set-frame-width)
675   (global-set-key [insertchar] 'overwrite-mode)
676   (global-set-key [?\C-x ?\C-n] 'skel-create-file)
677   (global-set-key [?\C-x ?4 ?n] 'skel-create-file-other-window)
678   (global-set-key [?\C-x ?5 ?n] 'skel-create-file-other-frame)
679   (global-set-key [delete] 'delete-char)
680   (global-set-key [?\M-q] 'mdw-fill-paragraph)
681   (global-set-key [?\C-h ?\C-m] 'manual-entry)
682   (global-set-key [C-M-backspace] 'backward-kill-sexp)
683   (global-set-key [mode-line C-mouse-1] 'mouse-tear-off-window)
684   (global-set-key [vertical-scroll-bar C-down-mouse-1]
685                   'mouse-drag-vertical-line)
686   (global-set-key [vertical-scroll-bar C-mouse-1]
687                   #'(lambda () (interactive)))
688   (global-set-key [M-S-mouse-3] 'imenu)
689   (global-set-key [XF86WakeUp] "")
690   (global-set-key [?\C-c ?d ?w] 'devhelp-word-at-point)
691   (global-set-key [?\C-c ?d ?a] 'devhelp-assistant-word-at-point)
692   (global-set-key [f11] 'mdw-toggle-full-screen)
693   (and (not mdw-fast-startup) (fboundp 'hippie-expand)
694        (global-set-key [?\M-?] 'hippie-expand)))
695
696 (eval-after-load "hippie-exp"
697   '(setq hippie-expand-try-functions-list
698          (remove-if (lambda (name)
699                       (memq name '(try-expand-list
700                                    try-expand-list-all-buffers)))
701                     hippie-expand-try-functions-list)))
702
703 (eval-after-load "dired"
704   '(progn
705      (or (lookup-key dired-mode-map  [?\C-x ?\C-q])
706          (define-key dired-mode-map [?\C-x ?\C-q]
707            'wdired-change-to-wdired-mode))
708      (trap (require 'dired-x))
709      (and (fboundp 'dired-do-relsymlink)
710           (define-key dired-mode-map [?\C-c ?\C-s] 'dired-do-relsymlink))))
711 (setq dired-guess-shell-alist-user
712       '(("\\.pdf\\'" "mupdf")))
713
714 (add-hook 'org-mode-hook
715           #'(lambda () (mdw-clobber-evil-keymap org-mode-map)))
716 (add-hook 'org-agenda-mode-hook
717           #'(lambda () (mdw-clobber-evil-keymap org-agenda-mode-map)))
718 (or mdw-fast-startup
719     (trap (progn
720             (org-remember-insinuate)
721             (global-set-key [?\C-c ?g ?r] 'org-remember))))
722
723 ;; Minor mode listing
724
725 (setq minor-mode-alist
726       (mdw-uniquify-alist '((reveal-mode (hs-minor-mode
727                                           " hs/r"
728                                           (global-reveal-mode
729                                            "" " Reveal")))
730                             (hs-minor-mode (reveal-mode "" " hs"))
731                             (abbrev-mode "")
732                             (gtags-mode ""))
733                           minor-mode-alist))
734
735 ;; Recognising types of files.
736
737 (setq auto-mode-alist
738       (append `(("\\.p[lm]$" . cperl-mode)
739                 ("\\.m$" . objc-mode)
740                 ("\\.mxd$" . c-mode)
741                 ("\\.cs$" . csharp-mode)
742                 ("\\.go$" . go-mode)
743                 ("\\.org$" . org-mode)
744                 ("\\.make$" . makefile-mode)
745                 ("\\.mk?d$" . markdown-mode)
746                 ;; ("/[ch]/" . c-mode)
747                 (,(concat "/\\("
748                           "\\.stgit\\.msg" "\\|"
749                           "\\.topmsg" "\\|"
750                           "\\.git/COMMIT_EDITMSG" "\\|"
751                           "svn-commit\\.tmp" "\\|"
752                           "svk-commit[^/.]*\\.tmp"
753                           "\\)$")
754                  . text-mode)
755                 (,(concat "^" tmpdir "/\\("
756                           "svk-commit[^/.]*\\.tmp" "\\|"
757                           "gitci\\.[^/.]*" "\\|"
758                           "cvs[^/.]\\{6\\}" "\\|"
759                           "quilt_header\.[^/.]\\{6\\}"
760                           "\\)$")
761                  . text-mode)
762                 ("\\.calc?$" . apcalc-mode)
763                 ("/\\(s\\|sh\\)/" . arm-assembler-mode)
764                 ("\\.\\(cmd\\|exec\\|rexx\\)$" . rexx-mode)
765                 ("\\.st$" . smalltalk-mode)
766                 ("\\.msgs$" . messages-mode)
767                 ("/all-cmds\\.in$" . cpp-messages-mode)
768                 ("\\.\\(tex\\|dtx\\)$" . latex-mode)
769                 ("\\.gc$" . haskell.-mode)
770                 (,(concat "^" (getenv "HOME") "/News/") . mdwmail-mode)
771                 (,(concat "^" tmpdir "/\\(SLRN\\|snd\\|pico\\|mutt\\)")
772                  . mdwmail-mode))
773               auto-mode-alist))
774
775 (setq interpreter-mode-alist
776       (append `(("runlisp" . lisp-mode)
777                 ("@BASH@" . sh-mode)
778                 ("@PYTHON@" . python-mode)
779                 ("@PERL@" . cperl-mode)
780                 ("perl" . cperl-mode)
781                 ("@TCLSH@" . tcl-mode)
782                 ("@WISH@" . tcl-mode)
783                 ("tclsh" . tcl-mode)
784                 ("wish" . tcl-mode))
785               interpreter-mode-alist))
786
787 (setq completion-ignored-extensions
788       (append `(".hc" ".hi") completion-ignored-extensions))
789 (dolist (dir (remove-if-not (lambda (ext)
790                               (= (aref ext (- (length ext) 1)) ?/))
791                             completion-ignored-extensions))
792   (if (/= (aref dir 0) ?/)
793       (setq completion-ignored-extensions
794             (cons (concat "/" dir)
795                   (remove dir completion-ignored-extensions)))))
796
797 ;; Some common local definitions.
798
799 (make-variable-buffer-local 'mdw-auto-indent)
800
801 (mapc (lambda (hook) (add-hook hook 'mdw-misc-mode-config))
802       '(c-mode-hook c++-mode-hook objc-mode-hook java-mode-hook
803         csharp-mode-hook perl-mode-hook cperl-mode-hook dylan-mode-hook
804         python-mode-hook pyrec-mode-hook icon-mode-hook awk-mode-hook
805         tcl-mode-hook go-mode-hook js-mode-hook javascript-mode-hook
806         conf-mode-hook m4-mode-hook autoconf-mode-hook autotest-mode-hook
807         a68-mode-hook a68-mode-hooks asm-mode-hook fsharp-mode-hook
808         scala-mode-hook rust-mode-hook TeX-mode-hook LaTeX-mode-hook
809         TeXinfo-mode-hook tex-mode-hook latex-mode-hook
810         texinfo-mode-hook emacs-lisp-mode-hook scheme-mode-hook
811         lisp-mode-hook lisp-interaction-mode-hook makefile-mode-hook
812         inferior-lisp-mode-hook slime-repl-mode-hook ielm-mode-hook
813         sml-mode-hook haskell-mode-hook erlang-mode-hook
814         smalltalk-mode-hook rexx-mode-hook lua-mode-hook
815         arm-assembler-mode-hook))
816
817 (global-font-lock-mode t)
818
819 ;;;--------------------------------------------------------------------------
820 ;;; Rootly editingness.
821
822 (eval-after-load "tramp"
823   '(let ((fix-args (if (mdw-version-< tramp-version "2.1")
824                        #'append #'list)))
825      (setq tramp-methods
826            (mdw-uniquify-alist
827             `(("become"
828                (tramp-connection-function tramp-open-connection-su)
829                (tramp-remote-sh "/bin/sh")
830                (tramp-login-program "become")
831                (tramp-copy-program nil)
832                (tramp-copy-args nil)
833                (tramp-copy-keep-date-arg nil)
834                (tramp-login-args ,(funcall fix-args `("TERM=dumb" "%u"))))
835               ("really"
836                (tramp-connection-function tramp-open-connection-su)
837                (tramp-login-program "really")
838                (tramp-login-args ,(funcall fix-args
839                                            `("-u" "%u")
840                                            `("--")
841                                            `("env" "TERM=dumb" "/bin/sh")))
842                (tramp-copy-program nil)
843                (tramp-copy-args nil)
844                (tramp-copy-keep-date-arg nil)
845                (tramp-remote-sh "/bin/sh"))
846               ,@tramp-methods)))
847      (setq tramp-default-method "ssh")
848      (let ((rootlyness (cond ((executable-find "really") "really")
849                              ((executable-find "become") "become")
850                              ((executable-find "sudo") "sudo")
851                              (t "su")))
852            (this-host (concat "\\`\\(localhost\\|"
853                               (system-name) "\\|\\)\\'"))
854            (this-user (concat "\\`\\(" (user-login-name) "\\|"
855                               (user-real-login-name) "\\|\\)\\'")))
856        (setq tramp-default-method-alist
857              `((,this-host nil ,rootlyness)
858                (nil ,this-user "ssh")
859                (nil "." ,rootlyness)))
860        (setq tramp-default-proxies-alist
861              `((,this-host nil nil)
862                (nil "." "/ssh:%h:"))))))
863
864 ;;;--------------------------------------------------------------------------
865 ;;; General fontification.
866
867 ;; Configure lazy fontification.
868
869 (and (fboundp 'lazy-lock-mode)
870      (setq font-lock-support-mode 'lazy-lock-mode))
871 ; (setq lazy-lock-defer-contextually t)
872 (setq lazy-lock-defer-time nil
873       font-lock-maximum-decoration 3
874       lazy-lock-minimum-size 0
875       lazy-lock-stealth-time 5
876       lazy-lock-stealth-lines 100
877       lazy-lock-stealth-verbose t)
878
879 (progn
880   (add-hook 'c-mode-hook 'mdw-fontify-c-and-c++ t)
881   (add-hook 'objc-mode-hook 'mdw-fontify-c-and-c++ t)
882   (add-hook 'c++-mode-hook 'mdw-fontify-c-and-c++ t)
883   (add-hook 'asm-mode-hook 'mdw-fontify-asm t)
884   (add-hook 'go-mode-hook 'mdw-fontify-go t)
885   (add-hook 'rust-mode-hook 'mdw-fontify-rust t)
886
887   (add-hook 'lua-mode-hook 'mdw-fontify-lua t)
888   (add-hook 'icon-mode-hook 'mdw-fontify-icon t)
889
890   (add-hook 'apcalc-mode-hook 'mdw-misc-mode-config t)
891   (add-hook 'apcalc-mode-hook 'mdw-fontify-apcalc t)
892
893   (add-hook 'java-mode-hook 'mdw-fontify-java t)
894   (add-hook 'scala-mode-hook 'mdw-fontify-scala t)
895   (add-hook 'js-mode-hook 'mdw-fontify-javascript t)
896   (add-hook 'csharp-mode-hook 'mdw-fontify-csharp t)
897   (add-hook 'fsharp-mode-hook 'mdw-fontify-fsharp t)
898   (add-hook 'inferior-fsharp-mode-hooks 'mdw-fontify-inferior-fsharp t)
899
900   (add-hook 'awk-mode-hook 'mdw-fontify-awk t)
901
902   (add-hook 'perl-mode-hook 'mdw-fontify-perl t)
903   (add-hook 'cperl-mode-hook 'mdw-fontify-perl t))
904
905 (progn
906   (setq-default py-indent-offset 2
907                 python-indent 2
908                 python-indent-offset 2
909                 py-python-command-args
910                 `("-i" "-colors" ,(if mdw-black-background
911                                       "Linux" "LightBG")))
912   (add-hook 'python-mode-hook 'mdw-fontify-python t)
913   (add-hook 'pyrex-mode-hook 'mdw-fontify-pyrex t))
914
915 (setq-default tcl-indent-level 2)
916 (add-hook 'tcl-mode-hook 'mdw-fontify-tcl t)
917
918 (add-hook 'rexx-mode-hook 'mdw-fontify-rexx t)
919
920 (setq sml-nested-if-indent t
921       sml-case-indent nil
922       sml-indent-level 4
923       sml-type-of-indent nil)
924 (add-hook 'sml-mode-hook 'mdw-fontify-sml t)
925
926 (add-hook 'haskell-mode-hook 'mdw-fontify-haskell t)
927 (setq-default haskell-indent-offset 2)
928
929 (add-hook 'erlang-mode-hook 'mdw-fontify-erlang t)
930
931 (add-hook 'texinfo-mode-hook 'mdw-fontify-texinfo t)
932 (add-hook 'TeXinfo-mode-hook 'mdw-fontify-texinfo t)
933
934 (setq LaTeX-table-label "tbl:")
935 (setq TeX-auto-untabify nil)
936 (add-hook 'TeX-mode-hook 'mdw-fontify-tex t)
937 (add-hook 'tex-mode-hook 'mdw-fontify-tex t)
938 (add-hook 'LaTeX-mode-hook 'mdw-fontify-tex t)
939 (add-hook 'latex-mode-hook 'mdw-fontify-tex t)
940
941 (add-hook 'sh-mode-hook #'mdw-setup-sh-script-mode)
942 (add-hook 'autoconf-mode-hook #'mdw-setup-m4)
943 (add-hook 'autotest-mode-hook #'mdw-setup-m4)
944 (add-hook 'm4-mode-hook #'mdw-setup-m4)
945
946 (add-hook 'smalltalk-mode-hook 'mdw-fontify-smalltalk t)
947 (add-hook 'smalltalk-mode-hook 'mdw-setup-smalltalk t)
948
949 (add-hook 'a68-mode-hook 'mdw-fontify-algol-68 t)
950 (add-hook 'a68-mode-hooks 'mdw-fontify-algol-68 t)
951 (add-hook 'dylan-mode-hook 'mdw-fontify-dylan t)
952
953 (progn
954   (add-hook 'emacs-lisp-mode-hook 'mdw-fontify-lispy t)
955   (add-hook 'scheme-mode-hook 'mdw-fontify-lispy t)
956   (add-hook 'lisp-mode-hook 'mdw-fontify-lispy t)
957   (add-hook 'inferior-lisp-mode-hook 'mdw-fontify-lispy t)
958   (add-hook 'lisp-interaction-mode-hook 'mdw-fontify-lispy t)
959   (add-hook 'ielm-mode-hook 'mdw-fontify-lispy t)
960   (add-hook 'slime-repl-mode-hook 'mdw-fontify-lispy t)
961   (add-hook 'lisp-mode-hook 'mdw-common-lisp-indent t)
962   (add-hook 'inferior-lisp-mode-hook
963           #'(lambda ()
964               (local-set-key "\C-m" 'comint-send-and-indent)) t))
965
966 (add-hook 'text-mode-hook 'mdw-text-mode t)
967
968 ;;;--------------------------------------------------------------------------
969 ;;; TeX stuff.
970
971 (setq TeX-output-view-style
972       '(("^dvi$"
973          ("^landscape$" "^pstricks$\\|^pst-\\|^psfrag$")
974          "%(o?)dvips -t landscape %d -o && xdg-open %f")
975         ("^dvi$" "^pstricks$\\|^pst-\\|^psfrag$"
976          "%(o?)dvips %d -o && xdg-open %f")
977         ("^dvi$"
978          ("^a4\\(?:dutch\\|paper\\|wide\\)\\|sem-a4$" "^landscape$")
979          "%(o?)xdvi %dS -paper a4r -s 0 %d")
980         ("^dvi$" "^a4\\(?:dutch\\|paper\\|wide\\)\\|sem-a4$"
981          "%(o?)xdvi %dS -paper a4 %d")
982         ("^dvi$"
983          ("^a5\\(?:comb\\|paper\\)$" "^landscape$")
984          "%(o?)xdvi %dS -paper a5r -s 0 %d")
985         ("^dvi$" "^a5\\(?:comb\\|paper\\)$" "%(o?)xdvi %dS -paper a5 %d")
986         ("^dvi$" "^b5paper$" "%(o?)xdvi %dS -paper b5 %d")
987         ("^dvi$" "^letterpaper$" "%(o?)xdvi %dS -paper us %d")
988         ("^dvi$" "^legalpaper$" "%(o?)xdvi %dS -paper legal %d")
989         ("^dvi$" "^executivepaper$" "%(o?)xdvi %dS -paper 7.25x10.5in %d")
990         ("^dvi$" "." "%(o?)xdvi %dS %d")
991         ("^pdf$" "." "xdg-open %o")
992         ("^html?$" "." "sensible-browser %o")))
993
994 (setq TeX-view-program-list
995       '(("mupdf" ("mupdf %o" (mode-io-correlate " %(outpage)")))))
996
997 (setq TeX-view-program-selection
998       '(((output-dvi style-pstricks) "dvips and gv")
999         (output-dvi "xdvi")
1000         (output-pdf "mupdf")
1001         (output-html "sensible-browser")))
1002
1003 (setq TeX-open-quote "\""
1004       TeX-close-quote "\"")
1005
1006 (setq reftex-use-external-file-finders t
1007       reftex-auto-recenter-toc t)
1008
1009 (setq reftex-label-alist
1010       '(("theorem" ?T "th:" "~\\ref{%s}" t ("theorems?" "th\\.") -2)
1011         ("axiom" ?A "ax:" "~\\ref{%s}" t ("axioms?" "ax\\.") -2)
1012         ("definition" ?D "def:" "~\\ref{%s}" t ("definitions?" "def\\.") -2)
1013         ("proposition" ?P "prop:" "~\\ref{%s}" t
1014          ("propositions?" "prop\\.") -2)
1015         ("lemma" ?L "lem:" "~\\ref{%s}" t ("lemmas?" "lem\\.") -2)
1016         ("example" ?X "eg:" "~\\ref{%s}" t ("examples?") -2)
1017         ("exercise" ?E "ex:" "~\\ref{%s}" t ("exercises?" "ex\\.") -2)
1018         ("enumerate" ?i "i:" "~\\ref{%s}" item ("items?"))))
1019 (setq reftex-section-prefixes
1020       '((0 . "part:")
1021         (1 . "ch:")
1022         (t . "sec:")))
1023
1024 (setq bibtex-field-delimiters 'double-quotes
1025       bibtex-entry-format '(realign opts-or-alts required-fields
1026                             numerical-fields last-comma delimiters
1027                             unify-case)
1028       bibtex-include-OPTkey nil)
1029
1030 ;;;--------------------------------------------------------------------------
1031 ;;; SLIME setup.
1032
1033 (trap
1034  (if (not mdw-fast-startup)
1035      (progn
1036        (require 'slime-autoloads)
1037        (slime-setup '(slime-autodoc slime-c-p-c)))))
1038
1039 (let ((stuff '((cmucl ("cmucl"))
1040                (sbcl ("sbcl") :coding-system utf-8-unix)
1041                (clisp ("clisp") :coding-system utf-8-unix))))
1042   (or (boundp 'slime-lisp-implementations)
1043       (setq slime-lisp-implementations nil))
1044   (while stuff
1045     (let* ((head (car stuff))
1046            (found (assq (car head) slime-lisp-implementations)))
1047       (setq stuff (cdr stuff))
1048       (if found
1049           (rplacd found (cdr head))
1050         (setq slime-lisp-implementations
1051               (cons head slime-lisp-implementations))))))
1052 (setq slime-default-lisp 'sbcl)
1053
1054 ;;;--------------------------------------------------------------------------
1055 ;;; Blogging.
1056
1057 (setq weblogger-config-alist
1058       '(("vox"
1059          ("user" . "mdw")
1060          ("server-url" . "http://vox.distorted.org.uk/admin/mt-xmlrpc.cgi")
1061          ("weblog" . "1"))))
1062
1063 ;;;--------------------------------------------------------------------------
1064 ;;; Shell mode.
1065
1066 ;; Make the shell mode aware of my prompt.
1067
1068 (setq shell-prompt-pattern "^[^]#$%>»}\n]*\\([]#$%»}]\\|>>?\\) *")
1069 (setq comint-password-prompt-regexp
1070       (concat "\\(\\([Ee]nter \\|[Oo]ld \\|[Nn]ew \\|[a-zA-Z0-9_]*'s \\|^\\)"
1071               "[Pp]assword\\|[Pp]ass ?phrase\\(\\| [-a-zA-Z0-9._]+\\)\\):")
1072       comint-file-name-chars "~/A-Za-z0-9+@:_.$#%,={}-"
1073       shell-file-name-chars comint-file-name-chars)
1074
1075 ;; Notice passwords, and make C-a work right.
1076
1077 (add-hook 'shell-mode-hook #'mdw-sh-mode-setup)
1078 (add-hook 'shell-mode-hook #'ansi-color-for-comint-mode-on)
1079 (setq shell-font-lock-keywords nil)
1080
1081 (add-hook 'term-mode-hook #'mdw-term-mode-setup)
1082
1083 ;;;--------------------------------------------------------------------------
1084 ;;; Finishing touches.
1085
1086 (trap (select-window mdw-init-window))
1087 (provide 'emacs-init)
1088
1089 ;;;----- That's all, folks --------------------------------------------------