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