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