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