]> git.donarmstrong.com Git - lib.git/blob - emacs_el/configuration/don-configuration.org
we don't need ensure f
[lib.git] / emacs_el / configuration / don-configuration.org
1 #+PROPERTY: header-args:emacs-lisp :tangle don-configuration.el
2 * Load debugger
3
4 # if for some reason, things get pear-shaped, we want to be able to
5 # enter the debugger by sending -USR2 to emacs
6
7 #+BEGIN_SRC emacs-lisp
8 (setq debug-on-event 'siguser2)
9 #+END_SRC
10 * Add library paths
11
12 #+BEGIN_SRC emacs-lisp
13   (add-to-list 'load-path '"~/lib/emacs_el/")
14   (add-to-list 'load-path '"~/lib/emacs_el/helm")
15   (add-to-list 'load-path '"~/lib/emacs_el/tiny-tools/lisp/tiny")
16   (add-to-list 'load-path '"~/lib/emacs_el/tiny-tools/lisp/other")
17   (add-to-list 'load-path '"~/lib/emacs_el/auctex/lisp")
18   (add-to-list 'load-path '"~/lib/emacs_el/auctex")
19   (add-to-list 'load-path '"~/lib/emacs_el/ESS/lisp")
20   (add-to-list 'load-path '"~/lib/emacs_el/org-mode/lisp")
21   (add-to-list 'load-path '"~/lib/emacs_el/auctex-beamer")
22   (add-to-list 'load-path '"~/lib/emacs_el/magit-annex")
23   (add-to-list 'load-path '"~/lib/emacs_el/polymode")
24 #+END_SRC
25
26 * Package management
27 ** package repositories and package manager
28 #+BEGIN_SRC emacs-lisp
29   (require 'package)
30   (setq package-archives '(("gnu" . "https://elpa.gnu.org/packages/")
31                            ("melpa" . "https://melpa.org/packages/")
32                            ("org" . "http://orgmode.org/elpa/") ))
33 #+END_SRC
34 ** [[https://github.com/jwiegley/use-package/][use-package]]
35 #+BEGIN_SRC emacs-lisp
36   (require 'use-package)
37   (package-initialize)
38 #+END_SRC
39 ** Paradox
40 #+BEGIN_SRC emacs-lisp
41   (package-initialize)
42   (use-package paradox
43     :ensure paradox
44   )
45 #+END_SRC
46 * Misc functions
47 ** with-library
48 #+BEGIN_SRC emacs-lisp
49 ;; From http://www.emacswiki.org/emacs/LoadingLispFiles
50 ;; execute conditional code when loading libraries
51 (defmacro with-library (symbol &rest body)
52   `(when (require ,symbol nil t)
53      ,@body))
54 (put 'with-library 'lisp-indent-function 1)
55 #+END_SRC
56
57
58 * Memory
59 #+BEGIN_SRC emacs-lisp
60   (setq global-mark-ring-max 128
61         mark-ring-max 128
62         kill-ring-max 128)
63
64   (defun don/minibuffer-setup-hook ()
65     (setq gc-cons-threshold most-positive-fixnum))
66
67   (defun don/minibuffer-exit-hook ()
68     (setq gc-cons-threshold 1048576))
69
70   (add-hook 'minibuffer-setup-hook #'don/minibuffer-setup-hook)
71   (add-hook 'minibuffer-exit-hook #'don/minibuffer-exit-hook)
72 #+END_SRC
73 * Modules
74 ** Flyspell 🐝 
75 #+BEGIN_SRC emacs-lisp
76   (use-package flyspell
77     :ensure t
78     :diminish flyspell-mode 🐝
79     :config
80     (add-hook 'message-mode-hook 'turn-on-flyspell)
81     (add-hook 'text-mode-hook 'turn-on-flyspell)
82     (add-hook 'c-mode-common-hook 'flyspell-prog-mode)
83     (add-hook 'cperl-mode-hook 'flyspell-prog-mode)
84     (add-hook 'tcl-mode-hook 'flyspell-prog-mode)
85     :init
86     (setq ispell-program-name "ispell")
87     )
88
89 #+END_SRC
90 ** Winnermode
91 #+BEGIN_SRC emacs-lisp
92   (winner-mode 1)
93 #+END_SRC
94 ** Eyebrowse
95
96 #+BEGIN_SRC emacs-lisp
97   ;; (use-package eyebrowse
98   ;;   :ensure t
99   ;;   :diminish eyebrowse-mode
100   ;;   :init (setq eyebrowse-keymap-prefix (kbd "C-c C-\\"))
101   ;;   :config (progn
102   ;;             (setq eyebrowse-wrap-around t)
103   ;;             (eyebrowse-mode t)
104   ;; 
105   ;;             (defun my/eyebrowse-new-window-config ()
106   ;;               (interactive)
107   ;;               (let ((done nil))
108   ;;                 (dotimes (i 10)
109   ;;                   ;; start at 1 run till 0
110   ;;                   (let ((j (mod (+ i 1) 10)))
111   ;;                     (when (and (not done)
112   ;;                                (not (eyebrowse--window-config-present-p j)))
113   ;;                       (eyebrowse-switch-to-window-config j)
114   ;;                       (call-interactively 'eyebrowse-rename-window-config2 j)
115   ;;                       (setq done t)
116   ;;                       ))
117   ;;                   )))
118   ;; 
119   ;;             ;; I don't use latex-preview-pane
120   ;;             ;; (require 'latex-preview-pane)
121   ;;             ;; (defun my/close-latex-preview-pane-before-eyebrowse-switch ()
122   ;;             ;;   ;; latex-preview-pane uses window-parameters which are
123   ;;             ;;   ;; not preserved by eyebrowse, so we close the preview
124   ;;             ;;   ;; pane before switching, it will be regenerated when we
125   ;;             ;;   ;; edit the TeX file.
126   ;;             ;;   (when (lpp/window-containing-preview)
127   ;;             ;;     (delete-window (lpp/window-containing-preview))))
128   ;; 
129   ;;             ;; (add-to-list 'eyebrowse-pre-window-switch-hook
130   ;;             ;;              #'my/close-latex-preview-pane-before-eyebrowse-switch)
131   ;; 
132   ;;             ;; (my/set-menu-key "["  #'my/eyebrowse-new-window-config)
133   ;;             ;; (my/set-menu-key ";"  #'eyebrowse-prev-window-config)
134   ;;             ;; (my/set-menu-key "'"  #'eyebrowse-next-window-config)
135   ;;             ;; (my/set-menu-key "]"  #'eyebrowse-close-window-config)
136   ;;             ;; (my/set-menu-key "\\" #'eyebrowse-rename-window-config)
137   ;;             )
138   ;;   )
139 #+END_SRC
140
141 ** Window handling
142
143 *** Splitting
144 #+BEGIN_SRC emacs-lisp
145   (defun my/vsplit-last-buffer ()
146     "Split the window vertically and display the previous buffer."
147     (interactive)
148     (split-window-vertically)
149     (other-window 1 nil)
150     (switch-to-next-buffer))
151
152   (defun my/hsplit-last-buffer ()
153     "Split the window horizontally and display the previous buffer."
154     (interactive)
155     (split-window-horizontally)
156     (other-window 1 nil)
157     (switch-to-next-buffer))
158
159   (bind-key "C-x 2" 'my/vsplit-last-buffer)
160   (bind-key "C-x 3" 'my/hsplit-last-buffer)
161
162   (setq split-width-threshold  100)
163   (setq split-height-threshold 60)
164
165   (defun my/split-window-prefer-vertically (window)
166     "If there's only one window (excluding any possibly active
167            minibuffer), then split the current window horizontally."
168     (if (and (one-window-p t)
169              (not (active-minibuffer-window))
170              ( < (frame-width) (frame-height))
171              )
172         (let ((split-width-threshold nil))
173           (split-window-sensibly window))
174       (split-window-sensibly window)))
175
176   (setq split-window-preferred-function #'my/split-window-prefer-vertically)
177   (setq window-combination-resize t)
178 #+END_SRC
179
180 *** Compilation window
181
182 If there is no compilation window, open one at the bottom, spanning
183 the complete width of the frame. Otherwise, reuse existing window. In
184 the former case, if there was no error the window closes
185 automatically.
186
187 #+BEGIN_SRC emacs-lisp
188   (add-to-list 'display-buffer-alist
189                `(,(rx bos "*compilation*" eos)
190                  (display-buffer-reuse-window
191                   display-buffer-in-side-window)
192                  (reusable-frames . visible)
193                  (side            . bottom)
194                  (window-height   . 0.4)))
195 #+END_SRC
196
197 #+BEGIN_SRC emacs-lisp
198   (defun my/compilation-exit-autoclose (status code msg)
199     ;; If M-x compile exists with a 0
200     (when (and (eq status 'exit) (zerop code))
201       ;; and delete the *compilation* window
202       (let ((compilation-window (get-buffer-window (get-buffer "*compilation*"))))
203         (when (and (not (window-at-side-p compilation-window 'top))
204                    (window-at-side-p compilation-window 'left)
205                    (window-at-side-p compilation-window 'right))
206           (delete-window compilation-window))))
207     ;; Always return the anticipated result of compilation-exit-message-function
208     (cons msg code))
209
210   ;; Specify my function (maybe I should have done a lambda function)
211   (setq compilation-exit-message-function #'my/compilation-exit-autoclose)
212 #+END_SRC
213
214 If you change the variable ~compilation-scroll-output~ to a ~non-nil~
215 value, the compilation buffer scrolls automatically to follow the
216 output. If the value is ~first-error~, scrolling stops when the first
217 error appears, leaving point at that error. For any other non-nil
218 value, scrolling continues until there is no more output.
219
220 #+BEGIN_SRC emacs-lisp
221   (setq compilation-scroll-output 'first-error)
222 #+END_SRC
223
224 ** Mode line cleaning
225 *** Diminish
226 #+BEGIN_SRC emacs-lisp
227   (use-package diminish
228     :ensure t)
229 #+END_SRC
230
231 *** Delight 
232 #+BEGIN_SRC emacs-lisp
233   (use-package delight
234     :ensure t)
235 #+END_SRC
236
237 ** Jumping
238 *** Avy
239 #+BEGIN_SRC emacs-lisp
240 (use-package avy
241   :ensure t
242   :bind ("C-c C-SPC" . avy-goto-word-1)
243   :config (progn
244             (setq avy-background t)
245             (key-chord-define-global "jj"  #'avy-goto-word-1)))
246 #+END_SRC
247
248 ** Snippets
249
250 *** Yasnippet
251 #+BEGIN_SRC emacs-lisp
252   (use-package yasnippet
253     :ensure t
254     :diminish yas-minor-mode
255     :config (progn
256               (yas-global-mode)
257               (setq yas-verbosity 1)
258               (define-key yas-minor-mode-map (kbd "<tab>") nil)
259               (define-key yas-minor-mode-map (kbd "TAB") nil)
260               (define-key yas-minor-mode-map (kbd "<backtab>") 'yas-expand)
261               ))
262 #+END_SRC
263
264 ** Helm Flx
265
266 [[https://github.com/PythonNut/helm-flx][helm-flx]] implements intelligent helm fuzzy sorting, provided by [[https://github.com/lewang/flx][flx]].
267
268 #+BEGIN_SRC emacs-lisp
269 (use-package helm-flx
270   :ensure t
271   :config (progn
272             ;; these are helm configs, but they kind of fit here nicely
273             (setq helm-M-x-fuzzy-match                  t
274                   helm-bookmark-show-location           t
275                   helm-buffers-fuzzy-matching           t
276                   helm-completion-in-region-fuzzy-match t
277                   helm-file-cache-fuzzy-match           t
278                   helm-imenu-fuzzy-match                t
279                   helm-mode-fuzzy-match                 t
280                   helm-locate-fuzzy-match               nil
281                   helm-quick-update                     t
282                   helm-recentf-fuzzy-match              nil
283                   helm-semantic-fuzzy-match             t)
284             (helm-flx-mode +1)))
285 #+END_SRC
286
287
288 ** Tinyprocmail
289
290 #+BEGIN_SRC emacs-lisp
291   ;; load tinyprocmail
292   (use-package tinyprocmail
293     :ensure f
294     :config (with-library 'tinyprocmail
295               ;; (setq tinyprocmail--procmail-version "v3.22")
296               (add-hook 'tinyprocmail--load-hook 'tinyprocmail-install))
297   )
298 #+END_SRC
299
300 ** Magit
301 #+BEGIN_SRC emacs-lisp :tangle don-configuration.el
302   (use-package magit
303     :ensure t
304     :bind (("C-x g" . magit-status)
305            ("C-x C-g" . magit-status))
306     :config
307     ;; don't verify where we are pushing
308     (setq magit-push-always-verify nil)
309     ;; refine diffs always (hilight words)
310     (setq magit-diff-refine-hunk nil)
311     ;; load magit-annex
312     (setq load-path
313           (append '("~/lib/emacs_el/magit-annex")
314                   load-path))
315     )
316   (use-package magit-annex
317     :ensure t
318   )
319 #+END_SRC
320
321 ** Perl
322 #+BEGIN_SRC emacs-lisp
323   (require 'cperl-mode)
324   ;; Use c-mode for perl .xs files
325   (add-to-list 'auto-mode-alist '("\\.xs\\'" . c-mode))
326   (add-to-list 'auto-mode-alist '("\\.\\([pP][Llm]\\|al\\)\\'" . cperl-mode))
327   (add-to-list 'interpreter-mode-alist '("perl" . cperl-mode))
328   (add-to-list 'interpreter-mode-alist '("perl5" . cperl-mode))
329   (add-to-list 'interpreter-mode-alist '("miniperl" . cperl-mode))
330   (setq cperl-hairy t
331         cperl-indent-level 4
332         cperl-auto-newline nil
333         cperl-auto-newline-after-colon nil
334         cperl-continued-statement-offset 4
335         cperl-brace-offset -1
336         cperl-continued-brace-offset 0
337         cperl-label-offset -4
338         cperl-highlight-variables-indiscriminately t
339         cperl-electric-lbrace-space nil
340         cperl-indent-parens-as-block nil
341         cperl-close-paren-offset -1
342         cperl-tab-always-indent t)
343   ;(add-hook 'cperl-mode-hook (lambda () (cperl-set-style "PerlStyle")))
344 #+END_SRC
345
346 ** Helm
347 #+BEGIN_SRC emacs-lisp
348   (use-package helm
349     :ensure t
350     :config
351     (helm-mode 1)
352     (define-key global-map [remap find-file] 'helm-find-files)
353     (define-key global-map [remap occur] 'helm-occur)
354     (define-key global-map [remap list-buffers] 'helm-buffers-list)
355     (define-key global-map [remap dabbrev-expand] 'helm-dabbrev)
356     (global-set-key (kbd "M-x") 'helm-M-x)
357     (unless (boundp 'completion-in-region-function)
358       (define-key lisp-interaction-mode-map [remap completion-at-point] 'helm-lisp-completion-at-point)
359       (define-key emacs-lisp-mode-map       [remap completion-at-point] 'helm-lisp-completion-at-point))
360     (add-hook 'kill-emacs-hook #'(lambda () (and (file-exists-p "$TMP") (delete-file "$TMP"))))
361   )
362 #+END_SRC
363 ** Hydra
364 #+BEGIN_SRC emacs-lisp :tangle don-configuration.el
365 (require 'don-hydra)
366 #+END_SRC
367
368 ** Tramp
369 #+BEGIN_SRC emacs-lisp
370   (add-to-list 'tramp-methods '("vcsh"
371                                 (tramp-login-program "vcsh")
372                                 (tramp-login-args
373                                  (("enter")
374                                   ("%h")))
375                                 (tramp-remote-shell "/bin/sh")
376                                 (tramp-remote-shell-args
377                                  ("-c"))))
378 #+END_SRC
379 ** LaTeX
380 #+BEGIN_SRC emacs-lisp
381   (use-package tex
382     :defer t
383     :ensure auctex
384     :config
385     (add-to-list 'LaTeX-fill-excluded-macros
386                  '("Sexpr"))
387     (add-to-list 'TeX-style-path '"/home/don/lib/emacs_el/auctex/style")
388     ;; REFTEX (much enhanced management of cross-ref, labels, etc)
389     ;; http://www.strw.leidenuniv.nl/~dominik/Tools/reftex/
390     (autoload 'reftex-mode     "reftex" "RefTeX Minor Mode" t)
391     (autoload 'turn-on-reftex  "reftex" "RefTeX Minor Mode" nil)
392     (autoload 'reftex-citation "reftex-cite" "Make citation" nil)
393     (autoload 'reftex-index-phrase-mode "reftex-index" "Phrase mode" t)
394     (add-hook 'LaTeX-mode-hook 'turn-on-reftex)   ; with AUCTeX LaTeX mode
395     (add-hook 'latex-mode-hook 'turn-on-reftex)   ; with Emacs latex mode
396     (add-hook 'LaTeX-mode-hook 'outline-minor-mode)   ; with AUCTeX LaTeX mode
397     (add-hook 'latex-mode-hook 'outline-minor-mode)   ; with Emacs latex mode
398
399     ;; support fake section headers
400     (setq TeX-outline-extra
401           '(("%chapter" 1)
402             ("%section" 2)
403             ("%subsection" 3)
404             ("%subsubsection" 4)
405             ("%paragraph" 5)))
406     ;; add font locking to the headers
407     (font-lock-add-keywords
408      'latex-mode
409      '(("^%\\(chapter\\|\\(sub\\|subsub\\)?section\\|paragraph\\)"
410         0 'font-lock-keyword-face t)
411        ("^%chapter{\\(.*\\)}"       1 'font-latex-sectioning-1-face t)
412        ("^%section{\\(.*\\)}"       1 'font-latex-sectioning-2-face t)
413        ("^%subsection{\\(.*\\)}"    1 'font-latex-sectioning-3-face t)
414        ("^%subsubsection{\\(.*\\)}" 1 'font-latex-sectioning-4-face t)
415        ("^%paragraph{\\(.*\\)}"     1 'font-latex-sectioning-5-face t)))
416
417     ;; use smart quotes by default instead of `` and ''
418     ;; taken from http://kieranhealy.org/esk/kjhealy.html
419     (setq TeX-open-quote "“")
420     (setq TeX-close-quote "”")
421
422     ;; (TeX-add-style-hook
423     ;;  "latex"
424     ;;  (lambda ()
425     ;;    (TeX-add-symbols
426     ;;     '("DLA" 1))))
427     ;; (custom-set-variables
428     ;;  '(font-latex-user-keyword-classes 
429     ;;    '(("fixme" 
430     ;;       ("DLA" "RZ")
431     ;;       font-lock-function-name-face 2 (command 1 t))))
432     ;; ) 
433     (setq-default TeX-parse-self t)
434     (setq-default TeX-auto-save t)
435     (setq-default TeX-master nil)
436     (eval-after-load
437         "latex"
438       '(TeX-add-style-hook
439         "cleveref"
440         (lambda ()
441           (if (boundp 'reftex-ref-style-alist)
442               (add-to-list
443                'reftex-ref-style-alist
444                '("Cleveref" "cleveref"
445                  (("\\cref" ?c) ("\\Cref" ?C) ("\\cpageref" ?d) ("\\Cpageref" ?D)))))
446           (reftex-ref-style-activate "Cleveref")
447           (TeX-add-symbols
448            '("cref" TeX-arg-ref)
449            '("Cref" TeX-arg-ref)
450            '("cpageref" TeX-arg-ref)
451            '("Cpageref" TeX-arg-ref)))))
452
453     (setq-default reftex-default-bibliography
454                   '("~/projects/research/references.bib"))
455     (use-package font-latex
456       :config
457       (setq font-latex-match-reference-keywords
458             '(
459               ("fref" "{")
460               ("Fref" "{")
461               ("citep" "{")
462               ("citet" "{")
463               ("acs" "{")
464               ("acsp" "{")
465               ("ac" "{")
466               ("acp" "{")
467               ("acl" "{")
468               ("aclp" "{")
469               ("acsu" "{")
470               ("aclu" "{")
471               ("acused" "{")
472               ("DLA" "{")
473               ("RZ" "{")
474               ("OM" "{")
475               ("DL" "{")
476               ("fixme" "{"))
477             )
478       )
479   )
480
481 #+END_SRC
482 ** Org
483 #+BEGIN_SRC emacs-lisp
484   (require 'org-mode-configuration)
485 #+END_SRC
486 *** Org-Gcal
487 #+BEGIN_SRC emacs-lisp
488   (use-package calfw
489     :ensure f
490     )
491   (use-package calfw-org
492     :ensure f
493     )
494   (use-package org-gcal
495     :ensure f
496     :config '((if (file-readable-p "~/.hide/org_gcal.el")
497                   (load-file "~/.hide/org_gcal.el"))
498               )
499     )
500 #+END_SRC
501 ** ESS
502 #+BEGIN_SRC emacs-lisp
503   (use-package ess
504     :ensure t
505     :config (require 'ess_configuration))
506 #+END_SRC
507
508 ** Rainbowmode
509 From http://julien.danjou.info/projects/emacs-packages#rainbow-mode, this colorizes color strings
510
511 #+BEGIN_SRC emacs-lisp
512   (use-package rainbow-mode
513     ;; add ess to the x major mode
514     :config (add-to-list 'rainbow-x-colors-major-mode-list 'ESS[S])
515     (add-to-list 'rainbow-x-colors-major-mode-list 'ESS[R])
516   )
517 #+END_SRC
518
519 ** Polymode
520 #+BEGIN_SRC emacs-lisp
521   (use-package polymode
522     :config
523     (use-package poly-R)
524     (use-package poly-noweb)
525     (use-package poly-markdown)
526     :mode ("\\.Snw" . poly-noweb+r-mode)
527     :mode ("\\.Rnw" . poly-noweb+r-mode)
528     :mode ("\\.Rmd" . poly-markdown+r-mode)
529     )
530 #+END_SRC
531
532 ** Outlining
533 *** Outline magic
534 #+BEGIN_SRC emacs-lisp
535   (use-package outline-magic)
536 #+END_SRC
537 * Keybindings
538 ** Override other things
539 #+BEGIN_SRC emacs-lisp
540   ; apparently things like to step on C-;, so we'll use a hack from
541   ; http://stackoverflow.com/questions/683425/globally-override-key-binding-in-emacs/5340797#5340797 to fix this
542
543   (defvar my-keys-minor-mode-map (make-keymap) "my-keys-minor-mode keymap.")
544
545   ; use iedit everywhere
546   (define-key my-keys-minor-mode-map (kbd "C-;") 'iedit-mode)
547   ;; use outline mode keybindings everywhere
548   ;; (define-key my-keys-minor-mode-map (kbd "C-;") 'my/mydra-outline/body)
549
550   (define-minor-mode my-keys-minor-mode
551     "A minor mode so that my key settings override annoying major modes."
552     t " my-keys" 'my-keys-minor-mode-map)
553
554   (my-keys-minor-mode 1)
555   (defun my-minibuffer-setup-hook ()
556     (my-keys-minor-mode 0))
557
558   (add-hook 'minibuffer-setup-hook 'my-minibuffer-setup-hook)
559   (defadvice load (after give-my-keybindings-priority)
560     "Try to ensure that my keybindings always have priority."
561     (if (not (eq (car (car minor-mode-map-alist)) 'my-keys-minor-mode))
562         (let ((mykeys (assq 'my-keys-minor-mode minor-mode-map-alist)))
563           (assq-delete-all 'my-keys-minor-mode minor-mode-map-alist)
564           (add-to-list 'minor-mode-map-alist mykeys))))
565   (ad-activate 'load)
566 #+END_SRC
567
568 * Misc (uncharacterized)
569 #+BEGIN_SRC emacs-lisp
570   (setq bibtex-user-optional-fields (quote (("annote" "Personal annotation (ignored)") ("abstract" "") ("pmid" "") ("doi" ""))))
571   (setq calendar-latitude 40.11)
572   (setq calendar-longitude -88.24)
573   (setq case-fold-search t)
574   (setq confirm-kill-emacs (quote y-or-n-p))
575   (setq cperl-lazy-help-time nil)
576   (setq debian-changelog-mailing-address "don@debian.org")
577   (display-time)
578   (setq display-time-24hr-format t)
579   (setq display-time-day-and-date t)
580   (display-time-mode 1)
581   (setq font-latex-fontify-script nil)
582   (setq font-latex-fontify-sectioning (quote color))
583   (setq font-latex-script-display (quote (nil)))
584   (global-auto-revert-mode 1)
585   (global-font-lock-mode 1)
586   (icomplete-mode 1)
587   (setq log-edit-keep-buffer t)
588   (setq mail-user-agent (quote sendmail-user-agent))
589   (setq markdown-enable-math t)
590   (setq markdown-follow-wiki-link-on-enter nil)
591   (setq mutt-alias-file-list (quote ("~/.mutt/aliases" "~/.mail_aliases")))
592   (setq post-email-address "don@donarmstrong.com")
593   (setq post-kill-quoted-sig nil)
594   (setq post-mail-message "mutt\\(ng\\|\\)-[a-z0-9]+-[0-9]+-.*")
595   (setq post-uses-fill-mode nil)
596   (setq ps-footer-font-size (quote (8 . 10)))
597   (setq ps-header-font-size (quote (8 . 10)))
598   (setq ps-header-title-font-size (quote (10 . 10)))
599   (setq ps-line-number-color "blue")
600   (setq ps-print-footer t)
601   (setq ps-print-footer-frame nil)
602   (setq ps-print-only-one-header t)
603   (setq safe-local-variable-values (quote ((auto-save-default) (make-backup-files))))
604   (setq sentence-end "[.?!][]\"')]*\\($\\|   \\| \\)[    
605   ]*")
606   (setq sentence-end-double-space nil)
607   ; enable matching parenthesis
608   (show-paren-mode 1)
609   (tool-bar-mode -1)
610   (setq user-mail-address "don@donarmstrong.com")
611   (setq vc-delete-logbuf-window nil)
612   (setq vc-follow-symlinks t)
613
614   ;; use git before SVN; use CVS earlier, because I have CVS
615   ;; repositories inside of git directories
616   (setq vc-handled-backends (quote (CVS Git RCS SVN SCCS Bzr Hg Mtn Arch)))
617
618   ;; switch back to the old primary selection method
619   (setq x-select-enable-clipboard nil)
620   (setq x-select-enable-primary t)
621   ; (setq mouse-drag-copy-region t)
622
623   (fset 'perl-mode 'cperl-mode)
624   ;;(load-file "cperl-mode.el")
625
626   (require 'vcl-mode)
627
628   (require 'tex-site)
629   ;;(require 'psvn)
630   ;;(require 'ecasound)
631   ;;(require 'emacs-wiki)
632   (require 'bibtex)
633   (require 'post)
634   ;;(require 'fixme)
635   ; (require 'google-weather)
636   ; (require 'org-google-weather)
637   ; (setq-default org-google-weather-format "%i %c, [%l,%h] %s %C")
638   
639   (global-set-key "\C-xp" 'server-edit)
640
641   (setq-default auto-mode-alist (cons '("\.wml$" . 
642                     (lambda () (html-mode) (auto-fill-mode)))
643                   auto-mode-alist))
644
645
646   ; use markdown mode for mdwn files
647   (add-to-list 'auto-mode-alist '("\\.mdwn$" . markdown-mode))
648   (add-to-list 'auto-mode-alist '("\\.md$" . markdown-mode))
649
650
651   ;; tramp configuration
652   (setq tramp-use-ssh-controlmaster-options nil)
653
654   ; mail configuration
655   (add-to-list 'auto-mode-alist '("muttng-[a-z0-9]+-[0-9]+-" . message-mode))
656   (add-to-list 'auto-mode-alist '("muttngrc" . muttrc-mode))
657
658   (add-to-list 'auto-mode-alist '("mutt-[a-z0-9]+-[0-9]+-" . message-mode))
659   (add-to-list 'auto-mode-alist '("muttrc" . muttrc-mode))
660   (defun my-message-mode-settings ()
661     (font-lock-add-keywords nil
662                             '(("^[ \t]*>[ \t]*>[ \t]*>.*$"
663                                (0 'message-multiply-quoted-text-face))
664                               ("^[ \t]*>[ \t]*>.*$"
665                                (0 'message-double-quoted-text-face))))
666     (local-set-key (kbd "C-c C-a") 'my-post-attach-file)
667     )
668   (add-hook 'message-mode-hook 'my-message-mode-settings)
669
670   (defun my-post-attach-file ()
671     "Prompt for an attachment."
672     (interactive)
673     (let ((file (read-file-name "Attach file: " nil nil t nil))
674           (description (string-read "Description: ")))
675       (my-header-attach-file file description)))
676
677   (symbol-function 'my-post-attach-file)
678
679   (defun my-header-attach-file (file description)
680     "Attach a FILE to the current message (works with Mutt).
681   Argument DESCRIPTION MIME description."
682     (interactive "fAttach file: \nsDescription: ")
683     (when (> (length file) 0)
684       (save-excursion
685         (save-match-data
686           (save-restriction
687             (widen)
688             (goto-char (point-min))
689             (search-forward-regexp "^$")
690             (insert (concat "Attach: " (replace-regexp-in-string "\\([[:space:]\\]\\)" "\\\\\\1" (file-truename file)) " "
691                             description "\n"))
692             (message (concat "Attached '" file "'."))
693             (setq post-has-attachment t))))))
694
695
696
697   (setq mail-yank-prefix "> ")
698
699   (global-unset-key "\M-g")
700   (global-set-key "\M-g" 'goto-line)
701
702   ;; self-insert-command hack.
703   ;;   Without this, "if<SP>" expands to
704   ;;   if ( -!-) {
705   ;;   }
706   ;;   which really should be,
707   ;;   if (-!-) {
708   ;;   }
709
710
711
712   ;(load-library "php-mode")
713
714   (setq-default c-indent-level 4)
715   (setq-default c-brace-imaginary-offset 0)
716   (setq-default c-brace-offset -4)
717   (setq-default c-argdecl-indent 4)
718   (setq-default c-label-offset -4)
719   (setq-default c-continued-statement-offset 4)
720   ; tabs are annoying
721   (setq-default indent-tabs-mode nil)
722   (setq-default tab-width 4)
723
724
725   ;; (autoload 'php-mode "php-mode" "PHP editing mode" t)
726   ;; (add-to-list 'auto-mode-alist '("\\.php3?\\'" . php-mode))
727   ;; (add-to-list 'auto-mode-alist '("\\.phtml?\\'" . php-mode))
728   ;; (add-to-list 'auto-mode-alist '("\\.php?\\'" . php-mode))
729   ;; (add-to-list 'auto-mode-alist '("\\.php4?\\'" . php-mode))
730
731
732   (defun insert-date ()
733     "Insert date at point."
734     (interactive)
735     (insert (format-time-string "%A, %B %e, %Y %k:%M:%S %Z")))
736   (global-set-key "\C-[d" 'insert-date)
737
738   (defun unfill-paragraph (arg)
739     "Pull this whole paragraph up onto one line."
740     (interactive "*p")
741     (let ((fill-column 10000))
742       (fill-paragraph arg))
743     )
744
745   (column-number-mode t)
746   (setq-default reftex-plug-into-AUCTeX t)
747
748   (server-start)
749
750   ; (require 'mode-compile)
751
752   (defadvice server-process-filter (after post-mode-message first activate)
753     "If the buffer is in post mode, overwrite the server-edit
754       message with a post-save-current-buffer-and-exit message."
755     (if (eq major-mode 'post-mode)
756         (message
757          (substitute-command-keys "Type \\[describe-mode] for help composing; \\[post-save-current-buffer-and-exit] when done."))))
758                       ; This is also needed to see the magic message.  Set to a higher
759                       ; number if you have a faster computer or read slower than me.
760   '(font-lock-verbose 1000)
761   ;(setq-default server-temp-file-regexp "mutt\(-\|ng-\)")
762   ; (add-hook 'server-switch-hook 
763   ;     (function (lambda()
764   ;             (cond ((string-match "Post" mode-name)
765   ;                (post-goto-body)))
766   ;             set-buffer-file-coding-system 'utf-8
767   ;             )))
768   ; 
769
770   (add-hook 'post-mode-hook
771         (auto-fill-mode nil)
772         )
773   ; abbrev mode settings
774   ; load abbreviations from 
775   (setq abbrev-file-name       
776         "~/.emacs_abbrev_def")
777
778   ; read the abbrev file if it exists
779   (if (file-exists-p abbrev-file-name)
780       (quietly-read-abbrev-file))
781
782   ; for now, use abbrev mode everywhere
783   (setq default-abbrev-mode t)
784
785
786   (defun insert-function-documentation ()
787     "Insert function documentation"
788     (interactive)
789     (insert-file-contents "/home/don/lib/templates/perl_function_documentation" nil))
790   (global-set-key "\M-f" 'insert-function-documentation)
791
792   (eval-after-load "lilypond-mode" 
793     '(progn
794        (load-library "lyqi-mode")
795        (define-key LilyPond-mode-map "\C-cq" 'lyqi-mode)))
796
797   (autoload 'spamassassin-mode "spamassassin-mode" nil t)
798
799   (desktop-load-default)
800   (desktop-read)
801   '(icomplete-mode on)
802   (custom-set-faces
803    ;; custom-set-faces was added by Custom.
804    ;; If you edit it by hand, you could mess it up, so be careful.
805    ;; Your init file should contain only one such instance.
806    ;; If there is more than one, they won't work right.
807    '(menu ((((type x-toolkit)) (:background "black" :foreground "grey90")))))
808
809
810   (put 'upcase-region 'disabled nil)
811   (put 'downcase-region 'disabled nil)
812   (put 'narrow-to-region 'disabled nil)
813
814   ; (defun turn-on-flyspell ()
815   ;    "Force flyspell-mode on using a positive arg.  For use in hooks."
816   ;    (interactive)
817   ;    (flyspell-mode 1))
818
819
820    ; Outline-minor-mode key map
821    (define-prefix-command 'cm-map nil "Outline-")
822    ; HIDE
823    (define-key cm-map "q" 'hide-sublevels)    ; Hide everything but the top-level headings
824    (define-key cm-map "t" 'hide-body)         ; Hide everything but headings (all body lines)
825    (define-key cm-map "o" 'hide-other)        ; Hide other branches
826    (define-key cm-map "c" 'hide-entry)        ; Hide this entry's body
827    (define-key cm-map "l" 'hide-leaves)       ; Hide body lines in this entry and sub-entries
828    (define-key cm-map "d" 'hide-subtree)      ; Hide everything in this entry and sub-entries
829    ; SHOW
830    (define-key cm-map "a" 'show-all)          ; Show (expand) everything
831    (define-key cm-map "e" 'show-entry)        ; Show this heading's body
832    (define-key cm-map "i" 'show-children)     ; Show this heading's immediate child sub-headings
833    (define-key cm-map "k" 'show-branches)     ; Show all sub-headings under this heading
834    (define-key cm-map "s" 'show-subtree)      ; Show (expand) everything in this heading & below
835    ; MOVE
836    (define-key cm-map "u" 'outline-up-heading)                ; Up
837    (define-key cm-map "n" 'outline-next-visible-heading)      ; Next
838    (define-key cm-map "p" 'outline-previous-visible-heading)  ; Previous
839    (define-key cm-map "f" 'outline-forward-same-level)        ; Forward - same level
840    (define-key cm-map "b" 'outline-backward-same-level)       ; Backward - same level
841    (global-set-key "\M-o" cm-map)
842
843
844   ; debian stuff
845   (setq-default debian-changelog-mailing-address "don@debian.org")
846   (setq-default debian-changelog-full-name "Don Armstrong")
847
848   ; ediff configuration
849   ; don't use the multi-window configuration
850   (setq ediff-window-setup-function 'ediff-setup-windows-plain)
851
852   ; use iedit
853   (require 'iedit)
854   (define-key global-map (kbd "C-;") 'iedit-mode)
855   (global-set-key  (kbd "C-;") 'iedit-mode)
856
857   ; fix up css mode to not be silly
858   ; from http://www.stokebloke.com/wordpress/2008/03/21/css-mode-indent-buffer-fix/
859   (setq cssm-indent-level 4)
860   (setq cssm-newline-before-closing-bracket t)
861   (setq cssm-indent-function #'cssm-c-style-indenter)
862   (setq cssm-mirror-mode nil)
863
864   (require 'multi-web-mode)
865   (setq mweb-default-major-mode 'html-mode)
866   (setq mweb-tags '((php-mode "<\\?php\\|<\\? \\|<\\?=" "\\?>")
867                     (js-mode "<script +\\(type=\"text/javascript\"\\|language=\"javascript\"\\)[^>]*>" "</script>")
868                     (css-mode "<style +type=\"text/css\"[^>]*>" "</style>")))
869   (setq mweb-filename-extensions '("php" "htm" "html" "ctp" "phtml" "php4" "php5"))
870   (multi-web-global-mode 1)
871
872   ;;; alias the new `flymake-report-status-slim' to
873   ;;; `flymake-report-status'
874   (defalias 'flymake-report-status 'flymake-report-status-slim)
875   (defun flymake-report-status-slim (e-w &optional status)
876     "Show \"slim\" flymake status in mode line."
877     (when e-w
878       (setq flymake-mode-line-e-w e-w))
879     (when status
880       (setq flymake-mode-line-status status))
881     (let* ((mode-line " Φ"))
882       (when (> (length flymake-mode-line-e-w) 0)
883         (setq mode-line (concat mode-line ":" flymake-mode-line-e-w)))
884       (setq mode-line (concat mode-line flymake-mode-line-status))
885       (setq flymake-mode-line mode-line)
886       (force-mode-line-update)))
887
888   ; load sql-indent when sql is loaded
889   (eval-after-load "sql"
890     '(load-library "sql-indent"))
891
892   ; fix up tmux xterm keys
893   ; stolen from http://unix.stackexchange.com/questions/24414/shift-arrow-not-working-in-emacs-within-tmux
894   (defun fix-up-tmux-keys ()
895       "Fix up tmux xterm keys"
896       (if (getenv "TMUX")
897           (progn
898             (let ((x 2) (tkey ""))
899               (while (<= x 8)
900                 ;; shift
901                 (if (= x 2)
902                     (setq tkey "S-"))
903                 ;; alt
904                 (if (= x 3)
905                     (setq tkey "M-"))
906                 ;; alt + shift
907                 (if (= x 4)
908                     (setq tkey "M-S-"))
909                 ;; ctrl
910                 (if (= x 5)
911                     (setq tkey "C-"))
912                 ;; ctrl + shift
913                 (if (= x 6)
914                     (setq tkey "C-S-"))
915                 ;; ctrl + alt
916                 (if (= x 7)
917                     (setq tkey "C-M-"))
918                 ;; ctrl + alt + shift
919                 (if (= x 8)
920                     (setq tkey "C-M-S-"))
921
922                 ;; arrows
923                 (define-key key-translation-map (kbd (format "M-[ 1 ; %d A" x)) (kbd (format "%s<up>" tkey)))
924                 (define-key key-translation-map (kbd (format "M-[ 1 ; %d B" x)) (kbd (format "%s<down>" tkey)))
925                 (define-key key-translation-map (kbd (format "M-[ 1 ; %d C" x)) (kbd (format "%s<right>" tkey)))
926                 (define-key key-translation-map (kbd (format "M-[ 1 ; %d D" x)) (kbd (format "%s<left>" tkey)))
927                 ;; home
928                 (define-key key-translation-map (kbd (format "M-[ 1 ; %d H" x)) (kbd (format "%s<home>" tkey)))
929                 ;; end
930                 (define-key key-translation-map (kbd (format "M-[ 1 ; %d F" x)) (kbd (format "%s<end>" tkey)))
931                 ;; page up
932                 (define-key key-translation-map (kbd (format "M-[ 5 ; %d ~" x)) (kbd (format "%s<prior>" tkey)))
933                 ;; page down
934                 (define-key key-translation-map (kbd (format "M-[ 6 ; %d ~" x)) (kbd (format "%s<next>" tkey)))
935                 ;; insert
936                 (define-key key-translation-map (kbd (format "M-[ 2 ; %d ~" x)) (kbd (format "%s<delete>" tkey)))
937                 ;; delete
938                 (define-key key-translation-map (kbd (format "M-[ 3 ; %d ~" x)) (kbd (format "%s<delete>" tkey)))
939                 ;; f1
940                 (define-key key-translation-map (kbd (format "M-[ 1 ; %d P" x)) (kbd (format "%s<f1>" tkey)))
941                 ;; f2
942                 (define-key key-translation-map (kbd (format "M-[ 1 ; %d Q" x)) (kbd (format "%s<f2>" tkey)))
943                 ;; f3
944                 (define-key key-translation-map (kbd (format "M-[ 1 ; %d R" x)) (kbd (format "%s<f3>" tkey)))
945                 ;; f4
946                 (define-key key-translation-map (kbd (format "M-[ 1 ; %d S" x)) (kbd (format "%s<f4>" tkey)))
947                 ;; f5
948                 (define-key key-translation-map (kbd (format "M-[ 15 ; %d ~" x)) (kbd (format "%s<f5>" tkey)))
949                 ;; f6
950                 (define-key key-translation-map (kbd (format "M-[ 17 ; %d ~" x)) (kbd (format "%s<f6>" tkey)))
951                 ;; f7
952                 (define-key key-translation-map (kbd (format "M-[ 18 ; %d ~" x)) (kbd (format "%s<f7>" tkey)))
953                 ;; f8
954                 (define-key key-translation-map (kbd (format "M-[ 19 ; %d ~" x)) (kbd (format "%s<f8>" tkey)))
955                 ;; f9
956                 (define-key key-translation-map (kbd (format "M-[ 20 ; %d ~" x)) (kbd (format "%s<f9>" tkey)))
957                 ;; f10
958                 (define-key key-translation-map (kbd (format "M-[ 21 ; %d ~" x)) (kbd (format "%s<f10>" tkey)))
959                 ;; f11
960                 (define-key key-translation-map (kbd (format "M-[ 23 ; %d ~" x)) (kbd (format "%s<f11>" tkey)))
961                 ;; f12
962                 (define-key key-translation-map (kbd (format "M-[ 24 ; %d ~" x)) (kbd (format "%s<f12>" tkey)))
963                 ;; f13
964                 (define-key key-translation-map (kbd (format "M-[ 25 ; %d ~" x)) (kbd (format "%s<f13>" tkey)))
965                 ;; f14
966                 (define-key key-translation-map (kbd (format "M-[ 26 ; %d ~" x)) (kbd (format "%s<f14>" tkey)))
967                 ;; f15
968                 (define-key key-translation-map (kbd (format "M-[ 28 ; %d ~" x)) (kbd (format "%s<f15>" tkey)))
969                 ;; f16
970                 (define-key key-translation-map (kbd (format "M-[ 29 ; %d ~" x)) (kbd (format "%s<f16>" tkey)))
971                 ;; f17
972                 (define-key key-translation-map (kbd (format "M-[ 31 ; %d ~" x)) (kbd (format "%s<f17>" tkey)))
973                 ;; f18
974                 (define-key key-translation-map (kbd (format "M-[ 32 ; %d ~" x)) (kbd (format "%s<f18>" tkey)))
975                 ;; f19
976                 (define-key key-translation-map (kbd (format "M-[ 33 ; %d ~" x)) (kbd (format "%s<f19>" tkey)))
977                 ;; f20
978                 (define-key key-translation-map (kbd (format "M-[ 34 ; %d ~" x)) (kbd (format "%s<f20>" tkey)))
979
980                 (setq x (+ x 1))
981                 ))
982             )
983         )
984       )
985   ; (add-hook 'tty-setup-hook 'fix-up-tmux-keys)
986
987   ; procmailmode configuration
988   (load "procmail_mode")
989
990   (load "mode-line-cleaner")
991
992   (defadvice ask-user-about-supersession-threat (around ask-user-about-supersession-threat-if-necessary)
993     "Call ask-user-about-supersession-threat only if the buffer is actually obsolete."
994     (if (or (buffer-modified-p)
995             (verify-visited-file-modtime)
996             (< (* 8 1024 1024) (buffer-size))
997             (/= 0 (call-process-region 1 (+ 1 (buffer-size)) "diff" nil nil nil "-q" (buffer-file-name) "-")))
998         ad-do-it
999       (clear-visited-file-modtime)
1000       (not-modified)))
1001   (ad-activate 'ask-user-about-supersession-threat)
1002
1003   ; apparently things like to step on C-;, so we'll use a hack from
1004   ; http://stackoverflow.com/questions/683425/globally-override-key-binding-in-emacs/5340797#5340797 to fix this
1005
1006   (defvar my-keys-minor-mode-map (make-keymap) "my-keys-minor-mode keymap.")
1007
1008   ; use iedit everywhere
1009   (define-key my-keys-minor-mode-map (kbd "C-;") 'iedit-mode)
1010
1011   (define-minor-mode my-keys-minor-mode
1012     "A minor mode so that my key settings override annoying major modes."
1013     t " my-keys" 'my-keys-minor-mode-map)
1014
1015   (my-keys-minor-mode 1)
1016   (defun my-minibuffer-setup-hook ()
1017     (my-keys-minor-mode 0))
1018
1019   (add-hook 'minibuffer-setup-hook 'my-minibuffer-setup-hook)
1020   (defadvice load (after give-my-keybindings-priority)
1021     "Try to ensure that my keybindings always have priority."
1022     (if (not (eq (car (car minor-mode-map-alist)) 'my-keys-minor-mode))
1023         (let ((mykeys (assq 'my-keys-minor-mode minor-mode-map-alist)))
1024           (assq-delete-all 'my-keys-minor-mode minor-mode-map-alist)
1025           (add-to-list 'minor-mode-map-alist mykeys))))
1026   (ad-activate 'load)
1027   (global-set-key "\M- " 'hippie-expand)
1028
1029 #+END_SRC
1030
1031 * END
1032 #+BEGIN_SRC emacs-lisp
1033   (provide 'don-configuration)
1034 #+END_SRC