]> git.donarmstrong.com Git - emacs.git/blob - .emacs
add markdown mode to the auto list
[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 ;; REFTEX (much enhanced management of cross-ref, labels, etc)
177 ;; http://www.strw.leidenuniv.nl/~dominik/Tools/reftex/
178 (autoload 'reftex-mode     "reftex" "RefTeX Minor Mode" t)
179 (autoload 'turn-on-reftex  "reftex" "RefTeX Minor Mode" nil)
180 (autoload 'reftex-citation "reftex-cite" "Make citation" nil)
181 (autoload 'reftex-index-phrase-mode "reftex-index" "Phrase mode" t)
182 (add-hook 'LaTeX-mode-hook 'turn-on-reftex)   ; with AUCTeX LaTeX mode
183 (add-hook 'latex-mode-hook 'turn-on-reftex)   ; with Emacs latex mode
184 (add-hook 'LaTeX-mode-hook 'outline-minor-mode)   ; with AUCTeX LaTeX mode
185 (add-hook 'latex-mode-hook 'outline-minor-mode)   ; with Emacs latex mode
186
187 ; use smart quotes by default instead of `` and ''
188 ; taken from http://kieranhealy.org/esk/kjhealy.html
189 (setq TeX-open-quote "“")
190 (setq TeX-close-quote "”")
191
192 ;; (TeX-add-style-hook
193 ;;  "latex"
194 ;;  (lambda ()
195 ;;    (TeX-add-symbols
196 ;;     '("DLA" 1))))
197 ;; (custom-set-variables
198 ;;  '(font-latex-user-keyword-classes 
199 ;;    '(("fixme" 
200 ;;       ("DLA" "RZ")
201 ;;       font-lock-function-name-face 2 (command 1 t))))
202 ;; ) 
203
204 (require 'font-latex)
205 (setq font-latex-match-reference-keywords
206       '(
207         ("fref" "{")
208         ("Fref" "{")
209         ("citep" "{")
210         ("citet" "{")
211         ("acs" "{")
212         ("acsp" "{")
213         ("ac" "{")
214         ("acp" "{")
215         ("acl" "{")
216         ("aclp" "{")
217         ("acsu" "{")
218         ("aclu" "{")
219         ("acused" "{")
220 ;         ))
221 ; (setq font-latex-match-warning-keywords
222 ;       '(
223         ("DLA" "{")
224         ("RZ" "{")
225         ("OM" "{")
226         ("DL" "{")
227         ("fixme" "{")))
228       
229 (setq-default TeX-parse-self t)
230 (setq-default TeX-auto-save t)
231 (setq-default TeX-master nil)
232
233 ;; this doesn't seem to work; not currently sure why
234 ; (setq font-latex-user-keyword-classes
235 ;       '(("my-warning-commands"
236 ;          (("DLA" "{")
237 ;           ("RZ" "{")
238 ;           ("OM" "{")
239 ;           ("DL" "{")
240 ;           ("fixme" "{")
241 ;           )
242 ;          (:foreground "red" :weight bold :underline (:color foreground-color :style line)))
243 ;         ))
244
245
246 (defun insert-date ()
247   "Insert date at point."
248   (interactive)
249   (insert (format-time-string "%A, %B %e, %Y %k:%M:%S %Z")))
250 (global-set-key "\C-[d" 'insert-date)
251
252 (defun unfill-paragraph (arg)
253   "Pull this whole paragraph up onto one line."
254   (interactive "*p")
255   (let ((fill-column 10000))
256     (fill-paragraph arg))
257   )
258
259 (column-number-mode t)
260 (setq-default reftex-plug-into-AUCTeX t)
261
262 (server-start)
263
264 (require 'mode-compile)
265
266 (setq-default reftex-default-bibliography
267       '("~/projects/research/references.bib"))
268
269 (defadvice server-process-filter (after post-mode-message first activate)
270   "If the buffer is in post mode, overwrite the server-edit
271     message with a post-save-current-buffer-and-exit message."
272   (if (eq major-mode 'post-mode)
273       (message
274        (substitute-command-keys "Type \\[describe-mode] for help composing; \\[post-save-current-buffer-and-exit] when done."))))
275                                         ; This is also needed to see the magic message.  Set to a higher
276                                         ; number if you have a faster computer or read slower than me.
277 '(font-lock-verbose 1000)
278 ;(setq-default server-temp-file-regexp "mutt\(-\|ng-\)")
279 ; (add-hook 'server-switch-hook 
280 ;         (function (lambda()
281 ;                     (cond ((string-match "Post" mode-name)
282 ;                            (post-goto-body)))
283 ;                     set-buffer-file-coding-system 'utf-8
284 ;                     )))
285
286
287 (add-hook 'post-mode-hook
288           (auto-fill-mode nil)
289           )
290 ; abbrev mode settings
291 ; load abbreviations from 
292 (setq abbrev-file-name       
293       "~/.emacs_abbrev_def")
294
295 ; read the abbrev file if it exists
296 (if (file-exists-p abbrev-file-name)
297     (quietly-read-abbrev-file))
298
299 ; for now, use abbrev mode everywhere
300 (setq default-abbrev-mode t)
301
302
303 (defun insert-function-documentation ()
304   "Insert function documentation"
305   (interactive)
306   (insert-file-contents "/home/don/lib/templates/perl_function_documentation" nil))
307 (global-set-key "\M-f" 'insert-function-documentation)
308
309 (eval-after-load "lilypond-mode" 
310   '(progn
311      (load-library "lyqi-mode")
312      (define-key LilyPond-mode-map "\C-cq" 'lyqi-mode)))
313
314 (autoload 'spamassassin-mode "spamassassin-mode" nil t)
315
316 (desktop-load-default)
317 (desktop-read)
318 '(icomplete-mode on)
319 (custom-set-faces
320  ;; custom-set-faces was added by Custom.
321  ;; If you edit it by hand, you could mess it up, so be careful.
322  ;; Your init file should contain only one such instance.
323  ;; If there is more than one, they won't work right.
324  '(menu ((((type x-toolkit)) (:background "black" :foreground "grey90")))))
325
326
327 (put 'upcase-region 'disabled nil)
328 (put 'downcase-region 'disabled nil)
329 (put 'narrow-to-region 'disabled nil)
330
331
332 (autoload 'flyspell-mode "flyspell" "On-the-fly spelling checker." t)
333 (add-hook 'message-mode-hook 'turn-on-flyspell)
334 (add-hook 'text-mode-hook 'turn-on-flyspell)
335 (add-hook 'c-mode-common-hook 'flyspell-prog-mode)
336 (add-hook 'cperl-mode-hook 'flyspell-prog-mode)
337 (add-hook 'tcl-mode-hook 'flyspell-prog-mode)
338 (defun turn-on-flyspell ()
339    "Force flyspell-mode on using a positive arg.  For use in hooks."
340    (interactive)
341    (flyspell-mode 1))
342
343
344  ; Outline-minor-mode key map
345  (define-prefix-command 'cm-map nil "Outline-")
346  ; HIDE
347  (define-key cm-map "q" 'hide-sublevels)    ; Hide everything but the top-level headings
348  (define-key cm-map "t" 'hide-body)         ; Hide everything but headings (all body lines)
349  (define-key cm-map "o" 'hide-other)        ; Hide other branches
350  (define-key cm-map "c" 'hide-entry)        ; Hide this entry's body
351  (define-key cm-map "l" 'hide-leaves)       ; Hide body lines in this entry and sub-entries
352  (define-key cm-map "d" 'hide-subtree)      ; Hide everything in this entry and sub-entries
353  ; SHOW
354  (define-key cm-map "a" 'show-all)          ; Show (expand) everything
355  (define-key cm-map "e" 'show-entry)        ; Show this heading's body
356  (define-key cm-map "i" 'show-children)     ; Show this heading's immediate child sub-headings
357  (define-key cm-map "k" 'show-branches)     ; Show all sub-headings under this heading
358  (define-key cm-map "s" 'show-subtree)      ; Show (expand) everything in this heading & below
359  ; MOVE
360  (define-key cm-map "u" 'outline-up-heading)                ; Up
361  (define-key cm-map "n" 'outline-next-visible-heading)      ; Next
362  (define-key cm-map "p" 'outline-previous-visible-heading)  ; Previous
363  (define-key cm-map "f" 'outline-forward-same-level)        ; Forward - same level
364  (define-key cm-map "b" 'outline-backward-same-level)       ; Backward - same level
365  (global-set-key "\M-o" cm-map)
366
367
368 ; debian stuff
369 (setq-default debian-changelog-mailing-address "don@debian.org")
370 (setq-default debian-changelog-full-name "Don Armstrong")
371
372 ; ediff configuration
373 ; don't use the multi-window configuration
374 (setq ediff-window-setup-function 'ediff-setup-windows-plain)
375
376 ; use iedit
377 (require 'iedit)
378 (define-key global-map (kbd "C-;") 'iedit-mode)
379 (global-set-key  (kbd "C-;") 'iedit-mode)
380
381 ; fix up css mode to not be silly
382 ; from http://www.stokebloke.com/wordpress/2008/03/21/css-mode-indent-buffer-fix/
383 (setq cssm-indent-level 4)
384 (setq cssm-newline-before-closing-bracket t)
385 (setq cssm-indent-function #'cssm-c-style-indenter)
386 (setq cssm-mirror-mode nil)
387
388 (require 'multi-web-mode)
389 (setq mweb-default-major-mode 'html-mode)
390 (setq mweb-tags '((php-mode "<\\?php\\|<\\? \\|<\\?=" "\\?>")
391                   (js-mode "<script +\\(type=\"text/javascript\"\\|language=\"javascript\"\\)[^>]*>" "</script>")
392                   (css-mode "<style +type=\"text/css\"[^>]*>" "</style>")))
393 (setq mweb-filename-extensions '("php" "htm" "html" "ctp" "phtml" "php4" "php5"))
394 (multi-web-global-mode 1)
395
396 ;;; alias the new `flymake-report-status-slim' to
397 ;;; `flymake-report-status'
398 (defalias 'flymake-report-status 'flymake-report-status-slim)
399 (defun flymake-report-status-slim (e-w &optional status)
400   "Show \"slim\" flymake status in mode line."
401   (when e-w
402     (setq flymake-mode-line-e-w e-w))
403   (when status
404     (setq flymake-mode-line-status status))
405   (let* ((mode-line " Φ"))
406     (when (> (length flymake-mode-line-e-w) 0)
407       (setq mode-line (concat mode-line ":" flymake-mode-line-e-w)))
408     (setq mode-line (concat mode-line flymake-mode-line-status))
409     (setq flymake-mode-line mode-line)
410     (force-mode-line-update)))
411
412 ; load sql-indent when sql is loaded
413 (eval-after-load "sql"
414   '(load-library "sql-indent"))
415
416 ; fix up tmux xterm keys
417 ; stolen from http://unix.stackexchange.com/questions/24414/shift-arrow-not-working-in-emacs-within-tmux
418 (if (getenv "TMUX")
419     (progn
420       (let ((x 2) (tkey ""))
421         (while (<= x 8)
422           ;; shift
423           (if (= x 2)
424               (setq tkey "S-"))
425           ;; alt
426           (if (= x 3)
427               (setq tkey "M-"))
428           ;; alt + shift
429           (if (= x 4)
430               (setq tkey "M-S-"))
431           ;; ctrl
432           (if (= x 5)
433               (setq tkey "C-"))
434           ;; ctrl + shift
435           (if (= x 6)
436               (setq tkey "C-S-"))
437           ;; ctrl + alt
438           (if (= x 7)
439               (setq tkey "C-M-"))
440           ;; ctrl + alt + shift
441           (if (= x 8)
442               (setq tkey "C-M-S-"))
443           
444           ;; arrows
445           (define-key key-translation-map (kbd (format "M-[ 1 ; %d A" x)) (kbd (format "%s<up>" tkey)))
446           (define-key key-translation-map (kbd (format "M-[ 1 ; %d B" x)) (kbd (format "%s<down>" tkey)))
447           (define-key key-translation-map (kbd (format "M-[ 1 ; %d C" x)) (kbd (format "%s<right>" tkey)))
448           (define-key key-translation-map (kbd (format "M-[ 1 ; %d D" x)) (kbd (format "%s<left>" tkey)))
449           ;; home
450           (define-key key-translation-map (kbd (format "M-[ 1 ; %d H" x)) (kbd (format "%s<home>" tkey)))
451           ;; end
452           (define-key key-translation-map (kbd (format "M-[ 1 ; %d F" x)) (kbd (format "%s<end>" tkey)))
453           ;; page up
454           (define-key key-translation-map (kbd (format "M-[ 5 ; %d ~" x)) (kbd (format "%s<prior>" tkey)))
455           ;; page down
456           (define-key key-translation-map (kbd (format "M-[ 6 ; %d ~" x)) (kbd (format "%s<next>" tkey)))
457           ;; insert
458           (define-key key-translation-map (kbd (format "M-[ 2 ; %d ~" x)) (kbd (format "%s<delete>" tkey)))
459           ;; delete
460           (define-key key-translation-map (kbd (format "M-[ 3 ; %d ~" x)) (kbd (format "%s<delete>" tkey)))
461           ;; f1
462           (define-key key-translation-map (kbd (format "M-[ 1 ; %d P" x)) (kbd (format "%s<f1>" tkey)))
463           ;; f2
464           (define-key key-translation-map (kbd (format "M-[ 1 ; %d Q" x)) (kbd (format "%s<f2>" tkey)))
465           ;; f3
466           (define-key key-translation-map (kbd (format "M-[ 1 ; %d R" x)) (kbd (format "%s<f3>" tkey)))
467           ;; f4
468           (define-key key-translation-map (kbd (format "M-[ 1 ; %d S" x)) (kbd (format "%s<f4>" tkey)))
469           ;; f5
470           (define-key key-translation-map (kbd (format "M-[ 15 ; %d ~" x)) (kbd (format "%s<f5>" tkey)))
471           ;; f6
472           (define-key key-translation-map (kbd (format "M-[ 17 ; %d ~" x)) (kbd (format "%s<f6>" tkey)))
473           ;; f7
474           (define-key key-translation-map (kbd (format "M-[ 18 ; %d ~" x)) (kbd (format "%s<f7>" tkey)))
475           ;; f8
476           (define-key key-translation-map (kbd (format "M-[ 19 ; %d ~" x)) (kbd (format "%s<f8>" tkey)))
477           ;; f9
478           (define-key key-translation-map (kbd (format "M-[ 20 ; %d ~" x)) (kbd (format "%s<f9>" tkey)))
479           ;; f10
480           (define-key key-translation-map (kbd (format "M-[ 21 ; %d ~" x)) (kbd (format "%s<f10>" tkey)))
481           ;; f11
482           (define-key key-translation-map (kbd (format "M-[ 23 ; %d ~" x)) (kbd (format "%s<f11>" tkey)))
483           ;; f12
484           (define-key key-translation-map (kbd (format "M-[ 24 ; %d ~" x)) (kbd (format "%s<f12>" tkey)))
485           ;; f13
486           (define-key key-translation-map (kbd (format "M-[ 25 ; %d ~" x)) (kbd (format "%s<f13>" tkey)))
487           ;; f14
488           (define-key key-translation-map (kbd (format "M-[ 26 ; %d ~" x)) (kbd (format "%s<f14>" tkey)))
489           ;; f15
490           (define-key key-translation-map (kbd (format "M-[ 28 ; %d ~" x)) (kbd (format "%s<f15>" tkey)))
491           ;; f16
492           (define-key key-translation-map (kbd (format "M-[ 29 ; %d ~" x)) (kbd (format "%s<f16>" tkey)))
493           ;; f17
494           (define-key key-translation-map (kbd (format "M-[ 31 ; %d ~" x)) (kbd (format "%s<f17>" tkey)))
495           ;; f18
496           (define-key key-translation-map (kbd (format "M-[ 32 ; %d ~" x)) (kbd (format "%s<f18>" tkey)))
497           ;; f19
498           (define-key key-translation-map (kbd (format "M-[ 33 ; %d ~" x)) (kbd (format "%s<f19>" tkey)))
499           ;; f20
500           (define-key key-translation-map (kbd (format "M-[ 34 ; %d ~" x)) (kbd (format "%s<f20>" tkey)))
501
502           (setq x (+ x 1))
503           ))
504       )
505   )
506
507 ; require org mode
508 (load "org-mode-configuration")
509 ; ess configuration
510 (load "ess_remote_eval")
511 (load "ess_configuration")
512 ; procmailmode configuration
513 (load "procmail_mode")
514
515 (load "mode-line-cleaner")
516
517 (defadvice ask-user-about-supersession-threat (around ask-user-about-supersession-threat-if-necessary)
518   "Call ask-user-about-supersession-threat only if the buffer is actually obsolete."
519   (if (or (buffer-modified-p)
520           (verify-visited-file-modtime)
521           (< (* 8 1024 1024) (buffer-size))
522           (/= 0 (call-process-region 1 (+ 1 (buffer-size)) "diff" nil nil nil "-q" (buffer-file-name) "-")))
523       ad-do-it
524     (clear-visited-file-modtime)
525     (not-modified)))
526 (ad-activate 'ask-user-about-supersession-threat)
527
528 ; apparently things like to step on C-;, so we'll use a hack from
529 ; http://stackoverflow.com/questions/683425/globally-override-key-binding-in-emacs/5340797#5340797 to fix this
530
531 (defvar my-keys-minor-mode-map (make-keymap) "my-keys-minor-mode keymap.")
532
533 ; use iedit everywhere
534 (define-key my-keys-minor-mode-map (kbd "C-;") 'iedit-mode)
535
536 (define-minor-mode my-keys-minor-mode
537   "A minor mode so that my key settings override annoying major modes."
538   t " my-keys" 'my-keys-minor-mode-map)
539
540 (my-keys-minor-mode 1)
541 (defun my-minibuffer-setup-hook ()
542   (my-keys-minor-mode 0))
543
544 (add-hook 'minibuffer-setup-hook 'my-minibuffer-setup-hook)
545 (defadvice load (after give-my-keybindings-priority)
546   "Try to ensure that my keybindings always have priority."
547   (if (not (eq (car (car minor-mode-map-alist)) 'my-keys-minor-mode))
548       (let ((mykeys (assq 'my-keys-minor-mode minor-mode-map-alist)))
549         (assq-delete-all 'my-keys-minor-mode minor-mode-map-alist)
550         (add-to-list 'minor-mode-map-alist mykeys))))
551 (ad-activate 'load)
552 (global-set-key "\M- " 'hippie-expand)