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