chiark / gitweb /
emacs: Whoops, use the right proxy config frob.
[profile] / emacs
1 ;;; -*-emacs-lisp-*-
2 ;;;
3 ;;; $Id: .emacs,v 1.11 1997/01/01 18:47:09 mdw Exp $
4 ;;;
5 ;;; Emacs configuration file
6 ;;;
7 ;;; (c) 1996-1999 Mark Wooding
8 ;;;
9
10 ;;;----- Licensing notice ---------------------------------------------------
11 ;;;
12 ;;; This program is free software; you can redistribute it and/or modify
13 ;;; it under the terms of the GNU General Public License as published by
14 ;;; the Free Software Foundation; either version 2 of the License, or
15 ;;; (at your option) any later version.
16 ;;;
17 ;;; This program is distributed in the hope that it will be useful,
18 ;;; but WITHOUT ANY WARRANTY; without even the implied warranty of
19 ;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
20 ;;; GNU General Public License for more details.
21 ;;;
22 ;;; You should have received a copy of the GNU General Public License
23 ;;; along with this program; if not, write to the Free Software
24 ;;; Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
25
26 (setq load-path (nconc load-path (list "~/lib/emacs")))
27 (require 'dot-emacs)
28
29 ;;;----- Some random initialisation -----------------------------------------
30
31 (setq mdw-init-window (selected-window))
32
33 ;; --- Load some other bits of code ---
34
35 (setq load-path (cons "~/lib/emacs" load-path))
36
37 (maybe-autoload 'cc-mode "cc-mode" nil t)
38 (maybe-autoload 'rexx-mode "rexx-mode" nil t)
39 (maybe-autoload 'cvs-update "pcl-cvs" nil t)
40 (maybe-autoload 'debian-changelog-mode "debian-changelog-mode" nil t)
41 (maybe-autoload 'git-status "git" nil t)
42 (and (library-exists-p "vc-git")
43      (not (memq 'GIT vc-handled-backends))
44      (setq vc-handled-backends (append vc-handled-backends (list 'GIT))))
45 (and (library-exists-p "quilt")
46      (load "quilt"))
47
48 (trap
49   (or (fboundp 'make-regexp)
50       (load "make-regexp")))
51
52 (trap (require 'tex-site))
53
54 ;; --- Skeleton stuff ---
55
56 (trap (require 'skel-init))
57
58 ;; --- Window system-dependent things ---
59
60 (require 'paren)
61 (trap (show-paren-mode t))
62 (or window-system (menu-bar-mode -1))
63
64 ;; --- Temporary directory handling ---
65
66 (defun mdw-check-dir-exists (dir)
67   (and dir
68        (file-directory-p dir)
69        dir))
70 (setq tmpdir (or (mdw-check-dir-exists (getenv "TMPDIR"))
71                  (mdw-check-dir-exists (format "/tmp/%s" (user-login-name)))
72                  "/tmp"))
73
74 ;; --- Emacs server behaviour ---
75
76 (and window-system
77      (trap (gnuserv-start)
78            (setq server-temp-file-regexp (concat "^" tmpdir "\\|/draft$"))))
79
80 ;; --- Control backup behaviour ---
81
82 (setq backup-by-copying nil)
83 (setq backup-by-copying-when-linked t)
84 (setq backup-by-copying-when-mismatch t)
85
86 ;; --- Calculator fiddling ---
87
88 (setq calc-settings-file "~/.emacs-calc")
89 (load calc-settings-file)
90
91 ;; ---- Some mail and news configuration ---
92
93 (setq mail-from-style 'parens)
94 (setq mail-signature t)
95 (setq mail-yank-prefix "> ")
96 (setq mail-archive-file-name "~/Mail/sent")
97
98 (setq rmail-display-summary t)
99 (setq rmail-file-name "~/Mail/rmail")
100
101 ;; --- GNUS configuration ---
102
103 (setq gnus-select-method '(nntp "tux.nsict.org"))
104 (setq gnus-read-active-file 'some)
105 (setq gnus-inhibit-startup-message t)
106 (setq gnus-large-newsgroup 500)
107
108 ;; --- Internationalization twiddling ---
109
110 (trap
111   (standard-display-european 1)
112   (let ((im (current-input-mode)))
113     (apply #'set-input-mode
114            (nconc (list (nth 0 im) (nth 1 im) 0) (nthcdr 3 im))))
115   (set-language-environment "Latin-1"))
116
117 ;; --- Don't disable any commands ---
118
119 (mapatoms #'(lambda (sym) (put sym 'disabled nil)))
120
121 ;; --- Split a wide window ---
122
123 (mdw-divvy-window)
124
125 ;; --- Other goodies ---
126
127 (resize-minibuffer-mode 1)              ;Make minibuffer grow dynamically
128 (auto-compression-mode 1)               ;Enable automatic compression
129 (setq dabbrev-case-replace nil)         ;Retain case when completing
130 (setq next-line-add-newlines nil)       ;Don't add weird newlines
131 (setq split-height-threshold 45)        ;Reuse windows where sensible
132 (setq dired-deletion-confirmer          ;Make deletion easier in dired
133       (symbol-function 'y-or-n-p))
134 (setq dired-listing-switches "-alF")    ;Do `ls -F' things in dired windows
135 (setq case-fold-file-names nil)         ;Don't translate file names (grr...)
136 (setq scroll-step 5)                    ;Don't scroll too much at a time
137 (setq-default fill-column 77)           ;I use rather narrow windows
138 (setq-default comment-column 40)        ;Set a standard comment column
139 (setq-default truncate-partial-width-windows nil)
140 (setq diff-switches "-u"                ;I like reading unified diffs
141       cvs-diff-flags (list diff-switches))
142 (setq echo-keystrokes 10)               ;Long delay before keystrokes echo
143 (setq ange-ftp-ftp-program-name "pftp") ;Use passive FTP
144 (setq find-ls-option                    ;Build file lists efficiently
145       '("-print0 | xargs -0r ls -ld" . "ld"))
146 (setq Info-fontify-maximum-menu-size 60000)
147 (setq ispell-dictionary "british"
148       flyspell-default-dictionary "british")
149 (trap
150   (require 'uniquify)
151   (setq uniquify-buffer-name-style 'post-forward-angle-brackets)
152   (setq uniquify-after-kill-buffer-p t))
153 (transient-mark-mode t)
154 (trap
155   (tooltip-mode 0)
156   (tool-bar-mode 0))
157 (trap (global-auto-revert-mode t))
158 (setq psgml-html-build-new-buffer nil)
159
160 (setq cltl2-root-url (mdw-config 'cltl-url))
161 (setq common-lisp-hyperspec-root (mdw-config 'hyperspec-url))
162
163 ;;;----- W3 and URL fetching stuff ------------------------------------------
164
165 (let ((proxy (mdw-config 'http-proxy)))
166   (setq url-proxy-services
167         `(("http" . ,proxy)
168           ("ftp" . ,proxy)
169           ("gopher" . ,proxy))))
170 (setq url-cookie-untrusted-urls '("."))
171           
172 (setq browse-url-browser-function (mdw-good-url-browser)
173       browse-url-mozilla-program "firefox")
174
175 (setq w3m-default-display-inline-images t)
176
177 (setq w3-do-incremental-display t
178       w3-use-menus '(file edit view go bookmark options
179                      buffers style search emacs nil help)
180       w3-display-inline-image t
181       w3-keybinding 'info)
182
183 ;;;----- Calendar configuration ---------------------------------------------
184
185 ;; --- Trivial stuff for the sunrise/sunset calculations ---
186
187 (setq calendar-latitude 52.2)
188 (setq calendar-longitude 0.1)
189 (setq calendar-location-name "Cambridge, UK")
190
191 ;; --- Date format fiddling ---
192
193 (setq european-calendar-style t)
194
195 (setq diary-date-forms '((day "[-/]" month "[^-/0-9]")
196                          (day " *" monthname "[ \t]*\\(\^M\\|\n\\)")
197                          (backup day " *" monthname "\\W+\\<[^*0-9]")
198                          (day "[-/]" month "[-/]" year "[^0-9]")
199                          (day " *" monthname " *" year "[^0-9]")
200                          (year "[-/]" month "[-/]" day "[^0-9]")
201                          (dayname "\\W")))
202
203 ;; --- Fancy diary handling ---
204
205 (add-hook 'diary-display-hook 'fancy-diary-display)
206 (setq diary-list-include-blanks t)
207 (add-hook 'list-diary-entries-hook 'sort-diary-entries t)
208 (add-hook 'list-diary-entries-hook 'include-other-diary-files)
209 (add-hook 'mark-diary-entries-hook 'mark-included-diary-files)
210
211 ;; --- Appointment management ---
212
213 (add-hook 'diary-hook 'appt-make-list)
214 (setq appt-issue-message t)
215 (setq appt-display-interval 3)
216 (setq appt-message-warning-time 10)
217
218 ;; --- Cosmetic stuff ---
219
220 (setq display-time-24hr-format t)
221 (display-time)
222 (trap
223   (if window-system
224       (let ((view-diary-entries-initially t))
225         (calendar))))
226
227 (defvar mdw-black-background t)
228
229 ;; --- Define more mode hooks for MailCrypt ---
230
231 (setq mdw-mc-modes
232       '((mdwmail-mode (encrypt . mdwmail-mc-encrypt)
233                       (sign . mdwmail-mc-sign))))
234
235 ;; --- Load the MailCrypt support ---
236
237 (trap
238   (and (string-match "linux" (symbol-name system-type))
239        (progn (require 'mailcrypt-init)
240               (require 'mailcrypt)
241               (setq mc-default-scheme 'mc-scheme-gpg)
242               (setq mc-pgp-user-id "mdw-nsict-pgp")
243               (setq mc-gpg-user-id "mdw-nsict-gpg")
244               (setq mc-modes-alist (append mc-modes-alist mdw-mc-modes))
245               (setq mc-pgp-always-sign t)
246               (setq mc-gpg-always-sign t)
247               (setq mc-always-replace 'never)
248               (setq mc-passwd-timeout 3600)
249               (setq mc-temp-directory tmpdir)
250               (setq mc-modes-alist (append mc-modes-alist mdw-mc-modes))
251               (define-key mc-write-mode-map "\C-c/S" 'mc-sign-region)
252               (define-key mc-write-mode-map "\C-c/E" 'mc-encrypt-region)
253               (add-hook 'text-mode-hook 'mc-install-write-mode))))
254
255 ;;;----- Other common declarations ------------------------------------------
256
257 ;; --- Default frame size ---
258
259 (setq default-frame-alist
260       (mdw-uniquify-alist
261        '((width . 78)
262          (height . 33)
263          (vertical-scroll-bars . right))
264        (and window-system
265             '((cursor-type . bar)
266               (cursor-blink . t)))
267        '((cursor-color . "red"))
268        (if mdw-black-background
269            '((background-color . "black")
270              (foreground-color . "white")
271              (background-mode . dark))
272          '((background-mode . light)))
273        (and (eq window-system 'pm)
274             '((font . "-os2-System VIO-medium-r-normal--*-40-*-*-m-*-cp850")
275               (menu-font . "8.Helv")
276               (background-color . "lightgrey")))
277        '((transparency . t))
278        default-frame-alist))
279
280 ;; --- Other frame fiddling ---
281
282 (setq frame-title-format '("" invocation-name "@" system-name ": %b"))
283
284 ;; --- Global keymap changes ---
285
286 (trap
287   (windmove-default-keybindings)
288   (setq windmove-wrap-around t))
289 (trap (iswitchb-mode))
290 (global-set-key [f4] 'query-replace-regexp)
291 (global-set-key [f5] 'goto-line)
292 (global-set-key [f6] 'auto-fill-mode)
293 (global-set-key [f7] 'occur)
294 (global-set-key [f8] 'undo)
295 (global-set-key [f9] 'mdw-divvy-window)
296 (global-set-key [insertchar] 'overwrite-mode)
297 (global-set-key "\C-xm" 'vm-mail)
298 (global-set-key "\C-x\C-n" 'skel-create-file)
299 (global-set-key "\C-x4n" 'skel-create-file-other-window)
300 (global-set-key "\C-x5n" 'skel-create-file-other-frame)
301 (global-set-key [delete] 'delete-char)
302 (global-set-key "\C-[\C-m" 'call-last-kbd-macro)
303 (global-set-key "\M-q" 'mdw-fill-paragraph)
304 (global-set-key "\C-h\C-m" 'manual-entry)
305 (global-set-key [mode-line C-mouse-1] 'mouse-tear-off-window)
306 (global-set-key [vertical-scroll-bar C-down-mouse-1]
307                 'mouse-drag-vertical-line)
308 (global-set-key [vertical-scroll-bar C-mouse-1]
309                 #'(lambda () (interactive)))
310 (global-set-key [mouse-4] 'mdw-wheel-up)
311 (global-set-key [mouse-5] 'mdw-wheel-down)
312
313 ;; --- Recognising types of files ---
314
315 (setq auto-mode-alist
316       (append `(("\\.p[lm]$" . perl-mode)
317                 ("\\.m$" . objc-mode)
318                 ("\\.mxd$" . c-mode)
319                 ;; ("/[ch]/" . c-mode)
320                 (,(concat "/\\("
321                           "\\.stgit\\.msg" "\\|"
322                           "\\.git/COMMIT_EDITMSG" "\\|"
323                           "svn-commit\\.tmp" "\\|"
324                           "svk-commit[^/.]*\\.tmp"
325                           "\\)$")
326                  . text-mode)
327                 (,(concat "^" tmpdir "/\\("
328                           "svk-commit[^/.]*\\.tmp" "\\|"
329                           "gitci\\.[^/.]*" "\\|"
330                           "cvs[^/.]\\{6\\}" "\\|"
331                           "quilt_header\.[^/.]\\{6\\}"
332                           "\\)$")
333                  . text-mode)
334                 ("\\.calc?$" . apcalc-mode)
335                 ("/src/linux/.*\\.\\(c\\|h\\|cc\\)$" . linux-c-mode)
336                 ("/\\(s\\|sh\\)/" . arm-assembler-mode)
337                 ("\\.\\(cmd\\|exec\\|rexx\\)$" . rexx-mode)
338                 ("\\.st$" . smalltalk-mode)
339                 ("\\.msgs$" . messages-mode)
340                 ("/all-cmds\\.in$" . cpp-messages-mode)
341                 ("\\.\\(tex\\|dtx\\)$" . latex-mode)
342                 ("\\.gc$" . haskell.-mode)
343                 (,(concat "^" (getenv "HOME") "/News/") . mdwmail-mode)
344                 (,(concat "^" tmpdir "/\\(SLRN\\|snd\\|pico\\)")
345                  . mdwmail-mode))
346               auto-mode-alist))
347
348 (setq interpreter-mode-alist
349       (append `(("runlisp" . lisp-mode))
350               interpreter-mode-alist))
351
352 (setq completion-ignored-extensions
353       (append `(".hc" ".hi") completion-ignored-extensions))
354
355 ;; --- Some common local definitions ---
356
357 (make-variable-buffer-local 'mdw-auto-indent)
358
359 (mapcar (lambda (hook) (add-hook hook 'mdw-misc-mode-config))
360         '(c-mode-hook c++-mode-hook objc-mode-hook java-mode-hook
361           perl-mode-hook cperl-mode-hook python-mode-hook awk-mode-hook
362           tcl-mode-hook
363           TeX-mode-hook LaTeX-mode-hook TeXinfo-mode-hook
364           tex-mode-hook latex-mode-hook texinfo-mode-hook
365           emacs-lisp-mode-hook scheme-mode-hook
366           lisp-mode-hook lisp-interaction-mode-hook inferior-lisp-mode-hook
367           slime-repl-mode-hook
368           sml-mode-hook haskell-mode-hook
369           smalltalk-mode-hook rexx-mode-hook
370           arm-assembler-mode-hook))
371
372 (global-font-lock-mode t)
373 (defalias 'perl-mode 'cperl-mode)
374
375 ;;;----- Rootly editingness -------------------------------------------------
376
377 (eval-after-load "tramp"
378   '(progn
379      (setq tramp-methods
380            (mdw-uniquify-alist
381             `(("become"
382                (tramp-connection-function tramp-open-connection-su)
383                (tramp-remote-sh "/bin/sh")
384                (tramp-login-program "become")
385                (tramp-copy-program nil)
386                (tramp-copy-args nil)
387                (tramp-copy-keep-date-arg nil)
388                (tramp-login-args ("TERM=dumb" "%u")))
389               ("really"
390                (tramp-connection-function tramp-open-connection-su)
391                (tramp-login-program "really")
392                (tramp-login-args ("-u" "%u" "--"
393                                   "env" "TERM=dumb" "/bin/sh"))
394                (tramp-copy-program nil)
395                (tramp-copy-args nil)
396                (tramp-copy-keep-date-arg nil)
397                (tramp-remote-sh "/bin/sh"))
398               ,@tramp-methods)))
399      (setq tramp-multi-connection-function-alist
400            (mdw-uniquify-alist
401             '(("bc" tramp-multi-connect-su "become TERM=dumb %u%n"))
402             '(("r" tramp-multi-connect-su "really -u %u%n"))
403             tramp-multi-connection-function-alist))
404      (setq tramp-default-method "ssh")
405      (setq tramp-default-method-alist
406            `(("\\`localhost\\'" ""
407               ,(cond ((executable-find "become") "become")
408                      ((executable-find "really") "really")
409                      (t "su")))))))
410
411 ;;;----- General fontification ----------------------------------------------
412
413 ;; --- Configure lazy fontification ---
414
415 (setq font-lock-support-mode 'lazy-lock-mode)
416 ; (setq lazy-lock-defer-contextually t)
417 (setq lazy-lock-defer-time nil)
418 (setq font-lock-maximum-decoration 3)
419 (setq lazy-lock-minimum-size 0)
420 (setq lazy-lock-stealth-time 5)
421 (setq lazy-lock-stealth-lines 100)
422 (setq lazy-lock-stealth-verbose t)
423
424 (add-hook 'after-make-frame-functions 'mdw-do-set-font)
425 (add-hook 'term-setup-hook (lambda () (mdw-do-set-font (selected-frame))))
426 (add-hook 'window-setup-hook (lambda () (mdw-do-set-font (selected-frame))))
427
428 (add-hook 'c-mode-hook 'mdw-fontify-c-and-c++ t)
429 (add-hook 'objc-mode-hook 'mdw-fontify-c-and-c++ t)
430 (add-hook 'c++-mode-hook 'mdw-fontify-c-and-c++ t)
431 (add-hook 'linux-c-mode-hook #'(lambda () (setq c-basic-offset 8)))
432
433 (add-hook 'apcalc-mode-hook 'mdw-misc-mode-config t)
434 (add-hook 'apcalc-mode-hook 'mdw-fontify-apcalc t)
435
436 (add-hook 'java-mode-hook 'mdw-fontify-java t)
437
438 (add-hook 'awk-mode-hook 'mdw-fontify-awk t)
439
440 (add-hook 'perl-mode-hook 'mdw-fontify-perl t)
441 (add-hook 'cperl-mode-hook 'mdw-fontify-perl t)
442
443 (setq-default py-indent-offset 2)
444 (add-hook 'python-mode-hook 'mdw-fontify-python t)
445
446 (setq-default tcl-indent-level 2)
447 (add-hook 'tcl-mode-hook 'mdw-fontify-tcl t)
448
449 (add-hook 'rexx-mode-hook 'mdw-fontify-rexx t)
450
451 (setq sml-nested-if-indent t)
452 (setq sml-case-indent nil)
453 (setq sml-indent-level 4)
454 (setq sml-type-of-indent nil)
455 (add-hook 'sml-mode-hook 'mdw-fontify-sml t)
456
457 (add-hook 'haskell-mode-hook 'mdw-fontify-haskell t)
458 (setq-default haskell-indent-offset 2)
459
460 (add-hook 'texinfo-mode-hook 'mdw-fontify-texinfo t)
461 (add-hook 'TeXinfo-mode-hook 'mdw-fontify-texinfo t)
462
463 (setq LaTeX-table-label "tbl:")
464 (setq-default TeX-master nil)
465 ;; (setq TeX-parse-self t)
466 ;; (setq TeX-auto-save t)
467 (setq TeX-auto-untabify nil)
468 (add-hook 'TeX-mode-hook 'mdw-fontify-tex t)
469 (add-hook 'tex-mode-hook 'mdw-fontify-tex t)
470 (add-hook 'LaTeX-mode-hook 'mdw-fontify-tex t)
471 (add-hook 'latex-mode-hook 'mdw-fontify-tex t)
472
473 (add-hook 'sh-mode-hook #'mdw-setup-sh-script-mode)
474
475 (add-hook 'smalltalk-mode-hook 'mdw-fontify-smalltalk t)
476 (add-hook 'smalltalk-mode-hook 'mdw-setup-smalltalk t)
477
478 (add-hook 'emacs-lisp-mode-hook 'mdw-fontify-lispy t)
479 (add-hook 'scheme-mode-hook 'mdw-fontify-lispy t)
480 (add-hook 'lisp-mode-hook 'mdw-fontify-lispy t)
481 (add-hook 'inferior-lisp-mode-hook 'mdw-fontify-lispy t)
482 (add-hook 'lisp-interaction-mode-hook 'mdw-fontify-lispy t)
483 (add-hook 'slime-repl-mode-hook 'mdw-fontify-lispy t)
484 (add-hook 'lisp-mode-hook 'mdw-common-lisp-indent t)
485 (trap
486   (require 'slime)
487   (slime-setup :autodoc t))
488 (trap (require 'xscheme))
489 (setq-default xscheme-process-command-line "scheme -large -emacs")
490 (add-hook 'inferior-lisp-mode-hook
491           #'(lambda ()
492               (local-set-key "\C-m" 'comint-send-and-indent)) t)
493
494 (add-hook 'text-mode-hook 'mdw-text-mode t)
495
496 ;;;----- Shell mode ---------------------------------------------------------
497
498 ;; --- Make the shell mode aware of my prompt ---
499
500 (setq shell-prompt-pattern "^[^]#$%>»}\n]*[]#$%>»}] *")
501 (setq comint-password-prompt-regexp
502       (concat "\\(\\([Oo]ld \\|[Nn]ew \\|[a-zA-Z0-9_]*'s \\|^\\)"
503               "[Pp]assword\\|pass phrase\\):\\s *\\'"))
504
505 ;; --- Notice passwords, and make C-a work right ---
506
507 (add-hook 'shell-mode-hook #'mdw-sh-mode-setup)
508
509 (add-hook 'term-mode-hook #'mdw-term-mode-setup)
510
511 ;;;----- Finishing touches --------------------------------------------------
512
513 (trap (select-window mdw-init-window))
514 (provide 'emacs-init)
515
516 ;;;----- That's all, folks --------------------------------------------------