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