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