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