]> git.donarmstrong.com Git - emacs.git/blob - .emacs
50a40e12c0d93cf8c3fc4e045a5f02618ee3993d
[emacs.git] / .emacs
1 (custom-set-variables
2  ;; custom-set-variables was added by Custom.
3  ;; If you edit it by hand, you could mess it up, so be careful.
4  ;; Your init file should contain only one such instance.
5  ;; If there is more than one, they won't work right.
6  '(bibtex-user-optional-fields (quote (("annote" "Personal annotation (ignored)") ("abstract" "") ("pmid" "") ("doi" ""))))
7  '(calendar-latitude [33 57 north])
8  '(calendar-longitude [117 24 west])
9  '(case-fold-search t)
10  '(confirm-kill-emacs (quote y-or-n-p))
11  '(cperl-lazy-help-time nil)
12  '(debian-changelog-mailing-address "don@debian.org" t)
13  '(display-time t)
14  '(display-time-24hr-format t)
15  '(display-time-day-and-date t)
16  '(display-time-mode t)
17  '(font-latex-fontify-script nil)
18  '(font-latex-fontify-sectioning (quote color))
19  '(font-latex-script-display (quote (nil)))
20  '(global-auto-revert-mode t)
21  '(global-font-lock-mode t nil (font-lock))
22  '(global-set-key "\347" t)
23  '(icomplete-mode t)
24  '(log-edit-keep-buffer t)
25  '(mail-user-agent (quote sendmail-user-agent))
26  '(markdown-enable-math t)
27  '(markdown-follow-wiki-link-on-enter nil)
28  '(mutt-alias-file-list (quote ("~/.mutt/aliases" "~/.mail_aliases")))
29  '(post-email-address "don@donarmstrong.com")
30  '(post-kill-quoted-sig nil)
31  '(post-mail-message "mutt\\(ng\\|\\)-[a-z0-9]+-[0-9]+-.*")
32  '(post-uses-fill-mode nil)
33  '(ps-footer-font-size (quote (8 . 10)))
34  '(ps-header-font-size (quote (8 . 10)))
35  '(ps-header-title-font-size (quote (10 . 10)))
36  '(ps-line-number-color "blue")
37  '(ps-print-footer t)
38  '(ps-print-footer-frame nil)
39  '(ps-print-only-one-header t)
40  '(safe-local-variable-values (quote ((auto-save-default) (make-backup-files))))
41  '(sentence-end "[.?!][]\"')]*\\($\\|   \\| \\)[        
42 ]*")
43  '(sentence-end-double-space nil)
44  '(show-paren-mode t)
45  '(tool-bar-mode nil nil (tool-bar))
46  '(user-mail-address "don@donarmstrong.com")
47  '(vc-delete-logbuf-window nil)
48  '(vc-follow-symlinks t))
49
50 ;; use git before SVN; use CVS earlier, because I have CVS
51 ;; repositories inside of git directories
52 (setq vc-handled-backends (quote (CVS Git RCS SVN SCCS Bzr Hg Mtn Arch)))
53
54 ;; switch back to the old primary selection method
55 (setq x-select-enable-clipboard nil)
56 (setq x-select-enable-primary t)
57 ; (setq mouse-drag-copy-region t)
58
59 (fset 'perl-mode 'cperl-mode)
60 ;;(load-file "cperl-mode.el")
61 (add-to-list 'load-path '"~/lib/emacs_el/configuration/")
62 (require 'don-configuration)
63
64 (require 'vcl-mode)
65
66 (require 'tex-site)
67 ;;(require 'psvn)
68 ;;(require 'ecasound)
69 ;;(require 'emacs-wiki)
70 (require 'bibtex)
71 (require 'post)
72 ;;(require 'fixme)
73 ; (require 'google-weather)
74 ; (require 'org-google-weather)
75 ; (setq-default org-google-weather-format "%i %c, [%l,%h] %s %C")
76
77 ; http://julien.danjou.info/projects/emacs-packages#rainbow-mode
78 ; this colorizes color strings
79 (require 'rainbow-mode)
80 ; add ess to the x major mode
81 (add-to-list 'rainbow-x-colors-major-mode-list 'ESS[S])
82 (add-to-list 'rainbow-x-colors-major-mode-list 'ESS[R])
83
84 (global-set-key "\C-xp" 'server-edit)
85
86 (setq-default auto-mode-alist (cons '("\.wml$" . 
87                               (lambda () (html-mode) (auto-fill-mode)))
88                             auto-mode-alist))
89
90
91 ; use markdown mode for mdwn files
92 (add-to-list 'auto-mode-alist '("\\.mdwn$" . markdown-mode))
93 (add-to-list 'auto-mode-alist '("\\.md$" . markdown-mode))
94
95
96 ;; tramp configuration
97 (setq tramp-use-ssh-controlmaster-options nil)
98
99 ; mail configuration
100 (add-to-list 'auto-mode-alist '("muttng-[a-z0-9]+-[0-9]+-" . message-mode))
101 (add-to-list 'auto-mode-alist '("muttngrc" . muttrc-mode))
102
103 (add-to-list 'auto-mode-alist '("mutt-[a-z0-9]+-[0-9]+-" . message-mode))
104 (add-to-list 'auto-mode-alist '("muttrc" . muttrc-mode))
105 (defun my-message-mode-settings ()
106   (font-lock-add-keywords nil
107                           '(("^[ \t]*>[ \t]*>[ \t]*>.*$"
108                              (0 'message-multiply-quoted-text-face))
109                             ("^[ \t]*>[ \t]*>.*$"
110                              (0 'message-double-quoted-text-face))))
111   (local-set-key (kbd "C-c C-a") 'my-post-attach-file)
112   )
113 (add-hook 'message-mode-hook 'my-message-mode-settings)
114
115 (defun my-post-attach-file ()
116   "Prompt for an attachment."
117   (interactive)
118   (let ((file (read-file-name "Attach file: " nil nil t nil))
119         (description (string-read "Description: ")))
120     (my-header-attach-file file description)))
121
122 (symbol-function 'my-post-attach-file)
123
124 (defun my-header-attach-file (file description)
125   "Attach a FILE to the current message (works with Mutt).
126 Argument DESCRIPTION MIME description."
127   (interactive "fAttach file: \nsDescription: ")
128   (when (> (length file) 0)
129     (save-excursion
130       (save-match-data
131         (save-restriction
132           (widen)
133           (goto-char (point-min))
134           (search-forward-regexp "^$")
135           (insert (concat "Attach: " (replace-regexp-in-string "\\([[:space:]\\]\\)" "\\\\\\1" (file-truename file)) " "
136                           description "\n"))
137           (message (concat "Attached '" file "'."))
138           (setq post-has-attachment t))))))
139
140
141
142 (setq mail-yank-prefix "> ")
143
144 (global-unset-key "\M-g")
145 (global-set-key "\M-g" 'goto-line)
146
147 ;; self-insert-command hack.
148 ;;   Without this, "if<SP>" expands to
149 ;;   if ( -!-) {
150 ;;   }
151 ;;   which really should be,
152 ;;   if (-!-) {
153 ;;   }
154
155
156
157 ;(load-library "php-mode")
158
159 (setq-default c-indent-level 4)
160 (setq-default c-brace-imaginary-offset 0)
161 (setq-default c-brace-offset -4)
162 (setq-default c-argdecl-indent 4)
163 (setq-default c-label-offset -4)
164 (setq-default c-continued-statement-offset 4)
165 ; tabs are annoying
166 (setq-default indent-tabs-mode nil)
167 (setq-default tab-width 4)
168
169
170 ;; (autoload 'php-mode "php-mode" "PHP editing mode" t)
171 ;; (add-to-list 'auto-mode-alist '("\\.php3?\\'" . php-mode))
172 ;; (add-to-list 'auto-mode-alist '("\\.phtml?\\'" . php-mode))
173 ;; (add-to-list 'auto-mode-alist '("\\.php?\\'" . php-mode))
174 ;; (add-to-list 'auto-mode-alist '("\\.php4?\\'" . php-mode))
175
176
177 (defun insert-date ()
178   "Insert date at point."
179   (interactive)
180   (insert (format-time-string "%A, %B %e, %Y %k:%M:%S %Z")))
181 (global-set-key "\C-[d" 'insert-date)
182
183 (defun unfill-paragraph (arg)
184   "Pull this whole paragraph up onto one line."
185   (interactive "*p")
186   (let ((fill-column 10000))
187     (fill-paragraph arg))
188   )
189
190 (column-number-mode t)
191 (setq-default reftex-plug-into-AUCTeX t)
192
193 (server-start)
194
195 ; (require 'mode-compile)
196
197 (defadvice server-process-filter (after post-mode-message first activate)
198   "If the buffer is in post mode, overwrite the server-edit
199     message with a post-save-current-buffer-and-exit message."
200   (if (eq major-mode 'post-mode)
201       (message
202        (substitute-command-keys "Type \\[describe-mode] for help composing; \\[post-save-current-buffer-and-exit] when done."))))
203                                         ; This is also needed to see the magic message.  Set to a higher
204                                         ; number if you have a faster computer or read slower than me.
205 '(font-lock-verbose 1000)
206 ;(setq-default server-temp-file-regexp "mutt\(-\|ng-\)")
207 ; (add-hook 'server-switch-hook 
208 ;         (function (lambda()
209 ;                     (cond ((string-match "Post" mode-name)
210 ;                            (post-goto-body)))
211 ;                     set-buffer-file-coding-system 'utf-8
212 ;                     )))
213
214
215 (add-hook 'post-mode-hook
216           (auto-fill-mode nil)
217           )
218 ; abbrev mode settings
219 ; load abbreviations from 
220 (setq abbrev-file-name       
221       "~/.emacs_abbrev_def")
222
223 ; read the abbrev file if it exists
224 (if (file-exists-p abbrev-file-name)
225     (quietly-read-abbrev-file))
226
227 ; for now, use abbrev mode everywhere
228 (setq default-abbrev-mode t)
229
230
231 (defun insert-function-documentation ()
232   "Insert function documentation"
233   (interactive)
234   (insert-file-contents "/home/don/lib/templates/perl_function_documentation" nil))
235 (global-set-key "\M-f" 'insert-function-documentation)
236
237 (eval-after-load "lilypond-mode" 
238   '(progn
239      (load-library "lyqi-mode")
240      (define-key LilyPond-mode-map "\C-cq" 'lyqi-mode)))
241
242 (autoload 'spamassassin-mode "spamassassin-mode" nil t)
243
244 (desktop-load-default)
245 (desktop-read)
246 '(icomplete-mode on)
247 (custom-set-faces
248  ;; custom-set-faces was added by Custom.
249  ;; If you edit it by hand, you could mess it up, so be careful.
250  ;; Your init file should contain only one such instance.
251  ;; If there is more than one, they won't work right.
252  '(menu ((((type x-toolkit)) (:background "black" :foreground "grey90")))))
253
254
255 (put 'upcase-region 'disabled nil)
256 (put 'downcase-region 'disabled nil)
257 (put 'narrow-to-region 'disabled nil)
258
259
260 (autoload 'flyspell-mode "flyspell" "On-the-fly spelling checker." t)
261 (add-hook 'message-mode-hook 'turn-on-flyspell)
262 (add-hook 'text-mode-hook 'turn-on-flyspell)
263 (add-hook 'c-mode-common-hook 'flyspell-prog-mode)
264 (add-hook 'cperl-mode-hook 'flyspell-prog-mode)
265 (add-hook 'tcl-mode-hook 'flyspell-prog-mode)
266 ; (defun turn-on-flyspell ()
267 ;    "Force flyspell-mode on using a positive arg.  For use in hooks."
268 ;    (interactive)
269 ;    (flyspell-mode 1))
270
271
272  ; Outline-minor-mode key map
273  (define-prefix-command 'cm-map nil "Outline-")
274  ; HIDE
275  (define-key cm-map "q" 'hide-sublevels)    ; Hide everything but the top-level headings
276  (define-key cm-map "t" 'hide-body)         ; Hide everything but headings (all body lines)
277  (define-key cm-map "o" 'hide-other)        ; Hide other branches
278  (define-key cm-map "c" 'hide-entry)        ; Hide this entry's body
279  (define-key cm-map "l" 'hide-leaves)       ; Hide body lines in this entry and sub-entries
280  (define-key cm-map "d" 'hide-subtree)      ; Hide everything in this entry and sub-entries
281  ; SHOW
282  (define-key cm-map "a" 'show-all)          ; Show (expand) everything
283  (define-key cm-map "e" 'show-entry)        ; Show this heading's body
284  (define-key cm-map "i" 'show-children)     ; Show this heading's immediate child sub-headings
285  (define-key cm-map "k" 'show-branches)     ; Show all sub-headings under this heading
286  (define-key cm-map "s" 'show-subtree)      ; Show (expand) everything in this heading & below
287  ; MOVE
288  (define-key cm-map "u" 'outline-up-heading)                ; Up
289  (define-key cm-map "n" 'outline-next-visible-heading)      ; Next
290  (define-key cm-map "p" 'outline-previous-visible-heading)  ; Previous
291  (define-key cm-map "f" 'outline-forward-same-level)        ; Forward - same level
292  (define-key cm-map "b" 'outline-backward-same-level)       ; Backward - same level
293  (global-set-key "\M-o" cm-map)
294
295
296 ; debian stuff
297 (setq-default debian-changelog-mailing-address "don@debian.org")
298 (setq-default debian-changelog-full-name "Don Armstrong")
299
300 ; ediff configuration
301 ; don't use the multi-window configuration
302 (setq ediff-window-setup-function 'ediff-setup-windows-plain)
303
304 ; use iedit
305 (require 'iedit)
306 (define-key global-map (kbd "C-;") 'iedit-mode)
307 (global-set-key  (kbd "C-;") 'iedit-mode)
308
309 ; fix up css mode to not be silly
310 ; from http://www.stokebloke.com/wordpress/2008/03/21/css-mode-indent-buffer-fix/
311 (setq cssm-indent-level 4)
312 (setq cssm-newline-before-closing-bracket t)
313 (setq cssm-indent-function #'cssm-c-style-indenter)
314 (setq cssm-mirror-mode nil)
315
316 (require 'multi-web-mode)
317 (setq mweb-default-major-mode 'html-mode)
318 (setq mweb-tags '((php-mode "<\\?php\\|<\\? \\|<\\?=" "\\?>")
319                   (js-mode "<script +\\(type=\"text/javascript\"\\|language=\"javascript\"\\)[^>]*>" "</script>")
320                   (css-mode "<style +type=\"text/css\"[^>]*>" "</style>")))
321 (setq mweb-filename-extensions '("php" "htm" "html" "ctp" "phtml" "php4" "php5"))
322 (multi-web-global-mode 1)
323
324 ;;; alias the new `flymake-report-status-slim' to
325 ;;; `flymake-report-status'
326 (defalias 'flymake-report-status 'flymake-report-status-slim)
327 (defun flymake-report-status-slim (e-w &optional status)
328   "Show \"slim\" flymake status in mode line."
329   (when e-w
330     (setq flymake-mode-line-e-w e-w))
331   (when status
332     (setq flymake-mode-line-status status))
333   (let* ((mode-line " Φ"))
334     (when (> (length flymake-mode-line-e-w) 0)
335       (setq mode-line (concat mode-line ":" flymake-mode-line-e-w)))
336     (setq mode-line (concat mode-line flymake-mode-line-status))
337     (setq flymake-mode-line mode-line)
338     (force-mode-line-update)))
339
340 ; load sql-indent when sql is loaded
341 (eval-after-load "sql"
342   '(load-library "sql-indent"))
343
344 ; fix up tmux xterm keys
345 ; stolen from http://unix.stackexchange.com/questions/24414/shift-arrow-not-working-in-emacs-within-tmux
346 (if (getenv "TMUX")
347     (progn
348       (let ((x 2) (tkey ""))
349         (while (<= x 8)
350           ;; shift
351           (if (= x 2)
352               (setq tkey "S-"))
353           ;; alt
354           (if (= x 3)
355               (setq tkey "M-"))
356           ;; alt + shift
357           (if (= x 4)
358               (setq tkey "M-S-"))
359           ;; ctrl
360           (if (= x 5)
361               (setq tkey "C-"))
362           ;; ctrl + shift
363           (if (= x 6)
364               (setq tkey "C-S-"))
365           ;; ctrl + alt
366           (if (= x 7)
367               (setq tkey "C-M-"))
368           ;; ctrl + alt + shift
369           (if (= x 8)
370               (setq tkey "C-M-S-"))
371           
372           ;; arrows
373           (define-key key-translation-map (kbd (format "M-[ 1 ; %d A" x)) (kbd (format "%s<up>" tkey)))
374           (define-key key-translation-map (kbd (format "M-[ 1 ; %d B" x)) (kbd (format "%s<down>" tkey)))
375           (define-key key-translation-map (kbd (format "M-[ 1 ; %d C" x)) (kbd (format "%s<right>" tkey)))
376           (define-key key-translation-map (kbd (format "M-[ 1 ; %d D" x)) (kbd (format "%s<left>" tkey)))
377           ;; home
378           (define-key key-translation-map (kbd (format "M-[ 1 ; %d H" x)) (kbd (format "%s<home>" tkey)))
379           ;; end
380           (define-key key-translation-map (kbd (format "M-[ 1 ; %d F" x)) (kbd (format "%s<end>" tkey)))
381           ;; page up
382           (define-key key-translation-map (kbd (format "M-[ 5 ; %d ~" x)) (kbd (format "%s<prior>" tkey)))
383           ;; page down
384           (define-key key-translation-map (kbd (format "M-[ 6 ; %d ~" x)) (kbd (format "%s<next>" tkey)))
385           ;; insert
386           (define-key key-translation-map (kbd (format "M-[ 2 ; %d ~" x)) (kbd (format "%s<delete>" tkey)))
387           ;; delete
388           (define-key key-translation-map (kbd (format "M-[ 3 ; %d ~" x)) (kbd (format "%s<delete>" tkey)))
389           ;; f1
390           (define-key key-translation-map (kbd (format "M-[ 1 ; %d P" x)) (kbd (format "%s<f1>" tkey)))
391           ;; f2
392           (define-key key-translation-map (kbd (format "M-[ 1 ; %d Q" x)) (kbd (format "%s<f2>" tkey)))
393           ;; f3
394           (define-key key-translation-map (kbd (format "M-[ 1 ; %d R" x)) (kbd (format "%s<f3>" tkey)))
395           ;; f4
396           (define-key key-translation-map (kbd (format "M-[ 1 ; %d S" x)) (kbd (format "%s<f4>" tkey)))
397           ;; f5
398           (define-key key-translation-map (kbd (format "M-[ 15 ; %d ~" x)) (kbd (format "%s<f5>" tkey)))
399           ;; f6
400           (define-key key-translation-map (kbd (format "M-[ 17 ; %d ~" x)) (kbd (format "%s<f6>" tkey)))
401           ;; f7
402           (define-key key-translation-map (kbd (format "M-[ 18 ; %d ~" x)) (kbd (format "%s<f7>" tkey)))
403           ;; f8
404           (define-key key-translation-map (kbd (format "M-[ 19 ; %d ~" x)) (kbd (format "%s<f8>" tkey)))
405           ;; f9
406           (define-key key-translation-map (kbd (format "M-[ 20 ; %d ~" x)) (kbd (format "%s<f9>" tkey)))
407           ;; f10
408           (define-key key-translation-map (kbd (format "M-[ 21 ; %d ~" x)) (kbd (format "%s<f10>" tkey)))
409           ;; f11
410           (define-key key-translation-map (kbd (format "M-[ 23 ; %d ~" x)) (kbd (format "%s<f11>" tkey)))
411           ;; f12
412           (define-key key-translation-map (kbd (format "M-[ 24 ; %d ~" x)) (kbd (format "%s<f12>" tkey)))
413           ;; f13
414           (define-key key-translation-map (kbd (format "M-[ 25 ; %d ~" x)) (kbd (format "%s<f13>" tkey)))
415           ;; f14
416           (define-key key-translation-map (kbd (format "M-[ 26 ; %d ~" x)) (kbd (format "%s<f14>" tkey)))
417           ;; f15
418           (define-key key-translation-map (kbd (format "M-[ 28 ; %d ~" x)) (kbd (format "%s<f15>" tkey)))
419           ;; f16
420           (define-key key-translation-map (kbd (format "M-[ 29 ; %d ~" x)) (kbd (format "%s<f16>" tkey)))
421           ;; f17
422           (define-key key-translation-map (kbd (format "M-[ 31 ; %d ~" x)) (kbd (format "%s<f17>" tkey)))
423           ;; f18
424           (define-key key-translation-map (kbd (format "M-[ 32 ; %d ~" x)) (kbd (format "%s<f18>" tkey)))
425           ;; f19
426           (define-key key-translation-map (kbd (format "M-[ 33 ; %d ~" x)) (kbd (format "%s<f19>" tkey)))
427           ;; f20
428           (define-key key-translation-map (kbd (format "M-[ 34 ; %d ~" x)) (kbd (format "%s<f20>" tkey)))
429
430           (setq x (+ x 1))
431           ))
432       )
433   )
434
435 ; require org mode
436 (load "org-mode-configuration")
437 ; ess configuration
438 (load "ess_remote_eval")
439 (load "ess_configuration")
440 ; procmailmode configuration
441 (load "procmail_mode")
442
443 (load "mode-line-cleaner")
444
445 (defadvice ask-user-about-supersession-threat (around ask-user-about-supersession-threat-if-necessary)
446   "Call ask-user-about-supersession-threat only if the buffer is actually obsolete."
447   (if (or (buffer-modified-p)
448           (verify-visited-file-modtime)
449           (< (* 8 1024 1024) (buffer-size))
450           (/= 0 (call-process-region 1 (+ 1 (buffer-size)) "diff" nil nil nil "-q" (buffer-file-name) "-")))
451       ad-do-it
452     (clear-visited-file-modtime)
453     (not-modified)))
454 (ad-activate 'ask-user-about-supersession-threat)
455
456 ; apparently things like to step on C-;, so we'll use a hack from
457 ; http://stackoverflow.com/questions/683425/globally-override-key-binding-in-emacs/5340797#5340797 to fix this
458
459 (defvar my-keys-minor-mode-map (make-keymap) "my-keys-minor-mode keymap.")
460
461 ; use iedit everywhere
462 (define-key my-keys-minor-mode-map (kbd "C-;") 'iedit-mode)
463
464 (define-minor-mode my-keys-minor-mode
465   "A minor mode so that my key settings override annoying major modes."
466   t " my-keys" 'my-keys-minor-mode-map)
467
468 (my-keys-minor-mode 1)
469 (defun my-minibuffer-setup-hook ()
470   (my-keys-minor-mode 0))
471
472 (add-hook 'minibuffer-setup-hook 'my-minibuffer-setup-hook)
473 (defadvice load (after give-my-keybindings-priority)
474   "Try to ensure that my keybindings always have priority."
475   (if (not (eq (car (car minor-mode-map-alist)) 'my-keys-minor-mode))
476       (let ((mykeys (assq 'my-keys-minor-mode minor-mode-map-alist)))
477         (assq-delete-all 'my-keys-minor-mode minor-mode-map-alist)
478         (add-to-list 'minor-mode-map-alist mykeys))))
479 (ad-activate 'load)
480 (global-set-key "\M- " 'hippie-expand)