]> git.donarmstrong.com Git - lib.git/blob - emacs_el/configuration/don-configuration.org
latex-fill-excluded should happen after latex is loaded
[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     ;; load magit-vcsh
316     (setq load-path
317           (append '("~/lib/emacs_el/magit-vcsh")
318                   load-path))
319     )
320   (use-package magit-annex
321     :ensure t
322   )
323   (use-package magit-vcsh
324     :ensure f ; currently not in melpa, so don't try to install
325   )
326 #+END_SRC
327
328 ** Perl
329 #+BEGIN_SRC emacs-lisp
330   (require 'cperl-mode)
331   ;; Use c-mode for perl .xs files
332   (add-to-list 'auto-mode-alist '("\\.xs\\'" . c-mode))
333   (add-to-list 'auto-mode-alist '("\\.\\([pP][Llm]\\|al\\)\\'" . cperl-mode))
334   (add-to-list 'interpreter-mode-alist '("perl" . cperl-mode))
335   (add-to-list 'interpreter-mode-alist '("perl5" . cperl-mode))
336   (add-to-list 'interpreter-mode-alist '("miniperl" . cperl-mode))
337   (setq cperl-hairy t
338         cperl-indent-level 4
339         cperl-auto-newline nil
340         cperl-auto-newline-after-colon nil
341         cperl-continued-statement-offset 4
342         cperl-brace-offset -1
343         cperl-continued-brace-offset 0
344         cperl-label-offset -4
345         cperl-highlight-variables-indiscriminately t
346         cperl-electric-lbrace-space nil
347         cperl-indent-parens-as-block nil
348         cperl-close-paren-offset -1
349         cperl-tab-always-indent t)
350   ;(add-hook 'cperl-mode-hook (lambda () (cperl-set-style "PerlStyle")))
351 #+END_SRC
352
353 ** Helm
354 #+BEGIN_SRC emacs-lisp
355   (use-package helm
356     :ensure t
357     :config
358     (helm-mode 1)
359     (define-key global-map [remap find-file] 'helm-find-files)
360     (define-key global-map [remap occur] 'helm-occur)
361     (define-key global-map [remap list-buffers] 'helm-buffers-list)
362     (define-key global-map [remap dabbrev-expand] 'helm-dabbrev)
363     (global-set-key (kbd "M-x") 'helm-M-x)
364     (unless (boundp 'completion-in-region-function)
365       (define-key lisp-interaction-mode-map [remap completion-at-point] 'helm-lisp-completion-at-point)
366       (define-key emacs-lisp-mode-map       [remap completion-at-point] 'helm-lisp-completion-at-point))
367     (add-hook 'kill-emacs-hook #'(lambda () (and (file-exists-p "$TMP") (delete-file "$TMP"))))
368   )
369 #+END_SRC
370 ** Hydra
371 #+BEGIN_SRC emacs-lisp :tangle don-configuration.el
372 (require 'don-hydra)
373 #+END_SRC
374
375 ** Tramp
376 #+BEGIN_SRC emacs-lisp
377   (add-to-list 'tramp-methods '("vcsh"
378                                 (tramp-login-program "vcsh")
379                                 (tramp-login-args
380                                  (("enter")
381                                   ("%h")))
382                                 (tramp-remote-shell "/bin/sh")
383                                 (tramp-remote-shell-args
384                                  ("-c"))))
385 #+END_SRC
386 ** Reftex
387 #+BEGIN_SRC emacs-lisp
388   (use-package reftex
389     :ensure t
390     :config
391     (setq-default reftex-default-bibliography
392                     '("~/projects/research/references.bib")))
393 #+END_SRC
394 ** LaTeX
395 #+BEGIN_SRC emacs-lisp
396   (use-package tex
397     :defer t
398     :ensure auctex
399     :config
400     ; (add-to-list 'TeX-style-path '"/home/don/lib/emacs_el/auctex/style")
401     ;; REFTEX (much enhanced management of cross-ref, labels, etc)
402     ;; http://www.strw.leidenuniv.nl/~dominik/Tools/reftex/
403     ; (autoload 'reftex-mode     "reftex" "RefTeX Minor Mode" t)
404     ; (autoload 'turn-on-reftex  "reftex" "RefTeX Minor Mode" nil)
405     ; (autoload 'reftex-citation "reftex-cite" "Make citation" nil)
406     ; (autoload 'reftex-index-phrase-mode "reftex-index" "Phrase mode" t)
407     (add-hook 'LaTeX-mode-hook 'turn-on-reftex)   ; with AUCTeX LaTeX mode
408     (add-hook 'latex-mode-hook 'turn-on-reftex)   ; with Emacs latex mode
409     (add-hook 'LaTeX-mode-hook 'outline-minor-mode)   ; with AUCTeX LaTeX mode
410     (add-hook 'latex-mode-hook 'outline-minor-mode)   ; with Emacs latex mode
411
412     (setq-default reftex-plug-into-AUCTeX t)
413     ;; support fake section headers
414     (setq TeX-outline-extra
415           '(("%chapter" 1)
416             ("%section" 2)
417             ("%subsection" 3)
418             ("%subsubsection" 4)
419             ("%paragraph" 5)))
420     ;; add font locking to the headers
421     (font-lock-add-keywords
422      'latex-mode
423      '(("^%\\(chapter\\|\\(sub\\|subsub\\)?section\\|paragraph\\)"
424         0 'font-lock-keyword-face t)
425        ("^%chapter{\\(.*\\)}"       1 'font-latex-sectioning-1-face t)
426        ("^%section{\\(.*\\)}"       1 'font-latex-sectioning-2-face t)
427        ("^%subsection{\\(.*\\)}"    1 'font-latex-sectioning-3-face t)
428        ("^%subsubsection{\\(.*\\)}" 1 'font-latex-sectioning-4-face t)
429        ("^%paragraph{\\(.*\\)}"     1 'font-latex-sectioning-5-face t)))
430
431     ;; use smart quotes by default instead of `` and ''
432     ;; taken from http://kieranhealy.org/esk/kjhealy.html
433     (setq TeX-open-quote "“")
434     (setq TeX-close-quote "”")
435
436     ;; (TeX-add-style-hook
437     ;;  "latex"
438     ;;  (lambda ()
439     ;;    (TeX-add-symbols
440     ;;     '("DLA" 1))))
441     ;; (custom-set-variables
442     ;;  '(font-latex-user-keyword-classes 
443     ;;    '(("fixme" 
444     ;;       ("DLA" "RZ")
445     ;;       font-lock-function-name-face 2 (command 1 t))))
446     ;; ) 
447     (setq-default TeX-parse-self t)
448     (setq-default TeX-auto-save t)
449     (setq-default TeX-master nil)
450     (eval-after-load
451         "latex"
452       '(TeX-add-style-hook
453         "cleveref"
454         (lambda ()
455           (if (boundp 'reftex-ref-style-alist)
456               (add-to-list
457                'reftex-ref-style-alist
458                '("Cleveref" "cleveref"
459                  (("\\cref" ?c) ("\\Cref" ?C) ("\\cpageref" ?d) ("\\Cpageref" ?D)))))
460           (reftex-ref-style-activate "Cleveref")
461           (TeX-add-symbols
462            '("cref" TeX-arg-ref)
463            '("Cref" TeX-arg-ref)
464            '("cpageref" TeX-arg-ref)
465            '("Cpageref" TeX-arg-ref)))))
466     (eval-after-load
467         "latex"
468       '(add-to-list 'LaTeX-fill-excluded-macros
469                     '("Sexpr")))
470
471     (use-package font-latex
472       :config
473       (setq font-latex-match-reference-keywords
474             '(
475               ("fref" "{")
476               ("Fref" "{")
477               ("citep" "{")
478               ("citet" "{")
479               ("acs" "{")
480               ("acsp" "{")
481               ("ac" "{")
482               ("acp" "{")
483               ("acl" "{")
484               ("aclp" "{")
485               ("acsu" "{")
486               ("aclu" "{")
487               ("acused" "{")
488               ("DLA" "{")
489               ("RZ" "{")
490               ("OM" "{")
491               ("DL" "{")
492               ("fixme" "{"))
493             )
494       )
495   )
496
497 #+END_SRC
498 ** Org
499 #+BEGIN_SRC emacs-lisp
500   (require 'org-mode-configuration)
501 #+END_SRC
502 *** Org-Gcal
503 #+BEGIN_SRC emacs-lisp
504   (use-package calfw
505     :ensure f
506     )
507   (use-package calfw-org
508     :ensure f
509     )
510   (use-package org-gcal
511     :ensure f
512     :config '((if (file-readable-p "~/.hide/org_gcal.el")
513                   (load-file "~/.hide/org_gcal.el"))
514               )
515     )
516 #+END_SRC
517 ** ESS
518 #+BEGIN_SRC emacs-lisp
519   (use-package ess
520     :ensure t
521     :config (require 'ess_configuration))
522 #+END_SRC
523
524 ** Rainbowmode
525 From http://julien.danjou.info/projects/emacs-packages#rainbow-mode, this colorizes color strings
526
527 #+BEGIN_SRC emacs-lisp
528   (use-package rainbow-mode
529     ;; add ess to the x major mode
530     :config (add-to-list 'rainbow-x-colors-major-mode-list 'ESS[S])
531     (add-to-list 'rainbow-x-colors-major-mode-list 'ESS[R])
532   )
533 #+END_SRC
534
535 ** Polymode
536 #+BEGIN_SRC emacs-lisp
537   (use-package polymode
538     :config
539     (use-package poly-R)
540     (use-package poly-noweb)
541     (use-package poly-markdown)
542     :mode ("\\.Snw" . poly-noweb+r-mode)
543     :mode ("\\.Rnw" . poly-noweb+r-mode)
544     :mode ("\\.Rmd" . poly-markdown+r-mode)
545     )
546 #+END_SRC
547
548 ** Outlining
549 *** Outline magic
550 #+BEGIN_SRC emacs-lisp
551   (use-package outline-magic)
552 #+END_SRC
553 * Keybindings
554 ** Override other things
555 #+BEGIN_SRC emacs-lisp
556   ; apparently things like to step on C-;, so we'll use a hack from
557   ; http://stackoverflow.com/questions/683425/globally-override-key-binding-in-emacs/5340797#5340797 to fix this
558
559   (defvar my-keys-minor-mode-map (make-keymap) "my-keys-minor-mode keymap.")
560
561   ; use iedit everywhere
562   (define-key my-keys-minor-mode-map (kbd "C-;") 'iedit-mode)
563   ;; use outline mode keybindings everywhere
564   ;; (define-key my-keys-minor-mode-map (kbd "C-;") 'my/mydra-outline/body)
565
566   (define-minor-mode my-keys-minor-mode
567     "A minor mode so that my key settings override annoying major modes."
568     t " my-keys" 'my-keys-minor-mode-map)
569
570   (my-keys-minor-mode 1)
571   (defun my-minibuffer-setup-hook ()
572     (my-keys-minor-mode 0))
573
574   (add-hook 'minibuffer-setup-hook 'my-minibuffer-setup-hook)
575   (defadvice load (after give-my-keybindings-priority)
576     "Try to ensure that my keybindings always have priority."
577     (if (not (eq (car (car minor-mode-map-alist)) 'my-keys-minor-mode))
578         (let ((mykeys (assq 'my-keys-minor-mode minor-mode-map-alist)))
579           (assq-delete-all 'my-keys-minor-mode minor-mode-map-alist)
580           (add-to-list 'minor-mode-map-alist mykeys))))
581   (ad-activate 'load)
582 #+END_SRC
583
584 * Misc (uncharacterized)
585 #+BEGIN_SRC emacs-lisp
586   (setq bibtex-user-optional-fields (quote (("annote" "Personal annotation (ignored)") ("abstract" "") ("pmid" "") ("doi" ""))))
587   (setq calendar-latitude 40.11)
588   (setq calendar-longitude -88.24)
589   (setq case-fold-search t)
590   (setq confirm-kill-emacs (quote y-or-n-p))
591   (setq cperl-lazy-help-time nil)
592   (setq debian-changelog-mailing-address "don@debian.org")
593   (display-time)
594   (setq display-time-24hr-format t)
595   (setq display-time-day-and-date t)
596   (display-time-mode 1)
597   (setq font-latex-fontify-script nil)
598   (setq font-latex-fontify-sectioning (quote color))
599   (setq font-latex-script-display (quote (nil)))
600   (global-auto-revert-mode 1)
601   (global-font-lock-mode 1)
602   (icomplete-mode 1)
603   (setq log-edit-keep-buffer t)
604   (setq mail-user-agent (quote sendmail-user-agent))
605   (setq markdown-enable-math t)
606   (setq markdown-follow-wiki-link-on-enter nil)
607   (setq mutt-alias-file-list (quote ("~/.mutt/aliases" "~/.mail_aliases")))
608   (setq post-email-address "don@donarmstrong.com")
609   (setq post-kill-quoted-sig nil)
610   (setq post-mail-message "mutt\\(ng\\|\\)-[a-z0-9]+-[0-9]+-.*")
611   (setq post-uses-fill-mode nil)
612   (setq ps-footer-font-size (quote (8 . 10)))
613   (setq ps-header-font-size (quote (8 . 10)))
614   (setq ps-header-title-font-size (quote (10 . 10)))
615   (setq ps-line-number-color "blue")
616   (setq ps-print-footer t)
617   (setq ps-print-footer-frame nil)
618   (setq ps-print-only-one-header t)
619   (setq safe-local-variable-values (quote ((auto-save-default) (make-backup-files))))
620   (setq sentence-end "[.?!][]\"')]*\\($\\|   \\| \\)[    
621   ]*")
622   (setq sentence-end-double-space nil)
623   ; enable matching parenthesis
624   (show-paren-mode 1)
625   (tool-bar-mode -1)
626   (setq user-mail-address "don@donarmstrong.com")
627   (setq vc-delete-logbuf-window nil)
628   (setq vc-follow-symlinks t)
629
630   ;; use git before SVN; use CVS earlier, because I have CVS
631   ;; repositories inside of git directories
632   (setq vc-handled-backends (quote (CVS Git RCS SVN SCCS Bzr Hg Mtn Arch)))
633
634   ;; switch back to the old primary selection method
635   (setq x-select-enable-clipboard nil)
636   (setq x-select-enable-primary t)
637   ; (setq mouse-drag-copy-region t)
638
639   (fset 'perl-mode 'cperl-mode)
640   ;;(load-file "cperl-mode.el")
641
642   (require 'vcl-mode)
643
644   (require 'tex-site)
645   ;;(require 'psvn)
646   ;;(require 'ecasound)
647   ;;(require 'emacs-wiki)
648   (require 'bibtex)
649   (require 'post)
650   ;;(require 'fixme)
651   ; (require 'google-weather)
652   ; (require 'org-google-weather)
653   ; (setq-default org-google-weather-format "%i %c, [%l,%h] %s %C")
654   
655   (global-set-key "\C-xp" 'server-edit)
656
657   (setq-default auto-mode-alist (cons '("\.wml$" . 
658                     (lambda () (html-mode) (auto-fill-mode)))
659                   auto-mode-alist))
660
661
662   ; use markdown mode for mdwn files
663   (add-to-list 'auto-mode-alist '("\\.mdwn$" . markdown-mode))
664   (add-to-list 'auto-mode-alist '("\\.md$" . markdown-mode))
665
666
667   ;; tramp configuration
668   (setq tramp-use-ssh-controlmaster-options nil)
669
670   ; mail configuration
671   (add-to-list 'auto-mode-alist '("muttng-[a-z0-9]+-[0-9]+-" . message-mode))
672   (add-to-list 'auto-mode-alist '("muttngrc" . muttrc-mode))
673
674   (add-to-list 'auto-mode-alist '("mutt-[a-z0-9]+-[0-9]+-" . message-mode))
675   (add-to-list 'auto-mode-alist '("muttrc" . muttrc-mode))
676   (defun my-message-mode-settings ()
677     (font-lock-add-keywords nil
678                             '(("^[ \t]*>[ \t]*>[ \t]*>.*$"
679                                (0 'message-multiply-quoted-text-face))
680                               ("^[ \t]*>[ \t]*>.*$"
681                                (0 'message-double-quoted-text-face))))
682     (local-set-key (kbd "C-c C-a") 'my-post-attach-file)
683     )
684   (add-hook 'message-mode-hook 'my-message-mode-settings)
685
686   (defun my-post-attach-file ()
687     "Prompt for an attachment."
688     (interactive)
689     (let ((file (read-file-name "Attach file: " nil nil t nil))
690           (description (string-read "Description: ")))
691       (my-header-attach-file file description)))
692
693   (symbol-function 'my-post-attach-file)
694
695   (defun my-header-attach-file (file description)
696     "Attach a FILE to the current message (works with Mutt).
697   Argument DESCRIPTION MIME description."
698     (interactive "fAttach file: \nsDescription: ")
699     (when (> (length file) 0)
700       (save-excursion
701         (save-match-data
702           (save-restriction
703             (widen)
704             (goto-char (point-min))
705             (search-forward-regexp "^$")
706             (insert (concat "Attach: " (replace-regexp-in-string "\\([[:space:]\\]\\)" "\\\\\\1" (file-truename file)) " "
707                             description "\n"))
708             (message (concat "Attached '" file "'."))
709             (setq post-has-attachment t))))))
710
711
712
713   (setq mail-yank-prefix "> ")
714
715   (global-unset-key "\M-g")
716   (global-set-key "\M-g" 'goto-line)
717
718   ;; self-insert-command hack.
719   ;;   Without this, "if<SP>" expands to
720   ;;   if ( -!-) {
721   ;;   }
722   ;;   which really should be,
723   ;;   if (-!-) {
724   ;;   }
725
726
727
728   ;(load-library "php-mode")
729
730   (setq-default c-indent-level 4)
731   (setq-default c-brace-imaginary-offset 0)
732   (setq-default c-brace-offset -4)
733   (setq-default c-argdecl-indent 4)
734   (setq-default c-label-offset -4)
735   (setq-default c-continued-statement-offset 4)
736   ; tabs are annoying
737   (setq-default indent-tabs-mode nil)
738   (setq-default tab-width 4)
739
740
741   ;; (autoload 'php-mode "php-mode" "PHP editing mode" t)
742   ;; (add-to-list 'auto-mode-alist '("\\.php3?\\'" . php-mode))
743   ;; (add-to-list 'auto-mode-alist '("\\.phtml?\\'" . php-mode))
744   ;; (add-to-list 'auto-mode-alist '("\\.php?\\'" . php-mode))
745   ;; (add-to-list 'auto-mode-alist '("\\.php4?\\'" . php-mode))
746
747
748   (defun insert-date ()
749     "Insert date at point."
750     (interactive)
751     (insert (format-time-string "%A, %B %e, %Y %k:%M:%S %Z")))
752   (global-set-key "\C-[d" 'insert-date)
753
754   (defun unfill-paragraph (arg)
755     "Pull this whole paragraph up onto one line."
756     (interactive "*p")
757     (let ((fill-column 10000))
758       (fill-paragraph arg))
759     )
760
761   (column-number-mode t)
762
763   (server-start)
764
765   ; (require 'mode-compile)
766
767   (defadvice server-process-filter (after post-mode-message first activate)
768     "If the buffer is in post mode, overwrite the server-edit
769       message with a post-save-current-buffer-and-exit message."
770     (if (eq major-mode 'post-mode)
771         (message
772          (substitute-command-keys "Type \\[describe-mode] for help composing; \\[post-save-current-buffer-and-exit] when done."))))
773                       ; This is also needed to see the magic message.  Set to a higher
774                       ; number if you have a faster computer or read slower than me.
775   '(font-lock-verbose 1000)
776   ;(setq-default server-temp-file-regexp "mutt\(-\|ng-\)")
777   ; (add-hook 'server-switch-hook 
778   ;     (function (lambda()
779   ;             (cond ((string-match "Post" mode-name)
780   ;                (post-goto-body)))
781   ;             set-buffer-file-coding-system 'utf-8
782   ;             )))
783   ; 
784
785   (add-hook 'post-mode-hook
786         (auto-fill-mode nil)
787         )
788   ; abbrev mode settings
789   ; load abbreviations from 
790   (setq abbrev-file-name       
791         "~/.emacs_abbrev_def")
792
793   ; read the abbrev file if it exists
794   (if (file-exists-p abbrev-file-name)
795       (quietly-read-abbrev-file))
796
797   ; for now, use abbrev mode everywhere
798   (setq default-abbrev-mode t)
799
800
801   (defun insert-function-documentation ()
802     "Insert function documentation"
803     (interactive)
804     (insert-file-contents "/home/don/lib/templates/perl_function_documentation" nil))
805   (global-set-key "\M-f" 'insert-function-documentation)
806
807   (eval-after-load "lilypond-mode" 
808     '(progn
809        (load-library "lyqi-mode")
810        (define-key LilyPond-mode-map "\C-cq" 'lyqi-mode)))
811
812   (autoload 'spamassassin-mode "spamassassin-mode" nil t)
813
814   (desktop-load-default)
815   (desktop-read)
816   '(icomplete-mode on)
817   (custom-set-faces
818    ;; custom-set-faces was added by Custom.
819    ;; If you edit it by hand, you could mess it up, so be careful.
820    ;; Your init file should contain only one such instance.
821    ;; If there is more than one, they won't work right.
822    '(menu ((((type x-toolkit)) (:background "black" :foreground "grey90")))))
823
824
825   (put 'upcase-region 'disabled nil)
826   (put 'downcase-region 'disabled nil)
827   (put 'narrow-to-region 'disabled nil)
828
829   ; (defun turn-on-flyspell ()
830   ;    "Force flyspell-mode on using a positive arg.  For use in hooks."
831   ;    (interactive)
832   ;    (flyspell-mode 1))
833
834
835    ; Outline-minor-mode key map
836    (define-prefix-command 'cm-map nil "Outline-")
837    ; HIDE
838    (define-key cm-map "q" 'hide-sublevels)    ; Hide everything but the top-level headings
839    (define-key cm-map "t" 'hide-body)         ; Hide everything but headings (all body lines)
840    (define-key cm-map "o" 'hide-other)        ; Hide other branches
841    (define-key cm-map "c" 'hide-entry)        ; Hide this entry's body
842    (define-key cm-map "l" 'hide-leaves)       ; Hide body lines in this entry and sub-entries
843    (define-key cm-map "d" 'hide-subtree)      ; Hide everything in this entry and sub-entries
844    ; SHOW
845    (define-key cm-map "a" 'show-all)          ; Show (expand) everything
846    (define-key cm-map "e" 'show-entry)        ; Show this heading's body
847    (define-key cm-map "i" 'show-children)     ; Show this heading's immediate child sub-headings
848    (define-key cm-map "k" 'show-branches)     ; Show all sub-headings under this heading
849    (define-key cm-map "s" 'show-subtree)      ; Show (expand) everything in this heading & below
850    ; MOVE
851    (define-key cm-map "u" 'outline-up-heading)                ; Up
852    (define-key cm-map "n" 'outline-next-visible-heading)      ; Next
853    (define-key cm-map "p" 'outline-previous-visible-heading)  ; Previous
854    (define-key cm-map "f" 'outline-forward-same-level)        ; Forward - same level
855    (define-key cm-map "b" 'outline-backward-same-level)       ; Backward - same level
856    (global-set-key "\M-o" cm-map)
857
858
859   ; debian stuff
860   (setq-default debian-changelog-mailing-address "don@debian.org")
861   (setq-default debian-changelog-full-name "Don Armstrong")
862
863   ; ediff configuration
864   ; don't use the multi-window configuration
865   (setq ediff-window-setup-function 'ediff-setup-windows-plain)
866
867   ; use iedit
868   (require 'iedit)
869   (define-key global-map (kbd "C-;") 'iedit-mode)
870   (global-set-key  (kbd "C-;") 'iedit-mode)
871
872   ; fix up css mode to not be silly
873   ; from http://www.stokebloke.com/wordpress/2008/03/21/css-mode-indent-buffer-fix/
874   (setq cssm-indent-level 4)
875   (setq cssm-newline-before-closing-bracket t)
876   (setq cssm-indent-function #'cssm-c-style-indenter)
877   (setq cssm-mirror-mode nil)
878
879   (require 'multi-web-mode)
880   (setq mweb-default-major-mode 'html-mode)
881   (setq mweb-tags '((php-mode "<\\?php\\|<\\? \\|<\\?=" "\\?>")
882                     (js-mode "<script +\\(type=\"text/javascript\"\\|language=\"javascript\"\\)[^>]*>" "</script>")
883                     (css-mode "<style +type=\"text/css\"[^>]*>" "</style>")))
884   (setq mweb-filename-extensions '("php" "htm" "html" "ctp" "phtml" "php4" "php5"))
885   (multi-web-global-mode 1)
886
887   ;;; alias the new `flymake-report-status-slim' to
888   ;;; `flymake-report-status'
889   (defalias 'flymake-report-status 'flymake-report-status-slim)
890   (defun flymake-report-status-slim (e-w &optional status)
891     "Show \"slim\" flymake status in mode line."
892     (when e-w
893       (setq flymake-mode-line-e-w e-w))
894     (when status
895       (setq flymake-mode-line-status status))
896     (let* ((mode-line " Φ"))
897       (when (> (length flymake-mode-line-e-w) 0)
898         (setq mode-line (concat mode-line ":" flymake-mode-line-e-w)))
899       (setq mode-line (concat mode-line flymake-mode-line-status))
900       (setq flymake-mode-line mode-line)
901       (force-mode-line-update)))
902
903   ; load sql-indent when sql is loaded
904   (eval-after-load "sql"
905     '(load-library "sql-indent"))
906
907   ; fix up tmux xterm keys
908   ; stolen from http://unix.stackexchange.com/questions/24414/shift-arrow-not-working-in-emacs-within-tmux
909   (defun fix-up-tmux-keys ()
910       "Fix up tmux xterm keys"
911       (if (getenv "TMUX")
912           (progn
913             (let ((x 2) (tkey ""))
914               (while (<= x 8)
915                 ;; shift
916                 (if (= x 2)
917                     (setq tkey "S-"))
918                 ;; alt
919                 (if (= x 3)
920                     (setq tkey "M-"))
921                 ;; alt + shift
922                 (if (= x 4)
923                     (setq tkey "M-S-"))
924                 ;; ctrl
925                 (if (= x 5)
926                     (setq tkey "C-"))
927                 ;; ctrl + shift
928                 (if (= x 6)
929                     (setq tkey "C-S-"))
930                 ;; ctrl + alt
931                 (if (= x 7)
932                     (setq tkey "C-M-"))
933                 ;; ctrl + alt + shift
934                 (if (= x 8)
935                     (setq tkey "C-M-S-"))
936
937                 ;; arrows
938                 (define-key key-translation-map (kbd (format "M-[ 1 ; %d A" x)) (kbd (format "%s<up>" tkey)))
939                 (define-key key-translation-map (kbd (format "M-[ 1 ; %d B" x)) (kbd (format "%s<down>" tkey)))
940                 (define-key key-translation-map (kbd (format "M-[ 1 ; %d C" x)) (kbd (format "%s<right>" tkey)))
941                 (define-key key-translation-map (kbd (format "M-[ 1 ; %d D" x)) (kbd (format "%s<left>" tkey)))
942                 ;; home
943                 (define-key key-translation-map (kbd (format "M-[ 1 ; %d H" x)) (kbd (format "%s<home>" tkey)))
944                 ;; end
945                 (define-key key-translation-map (kbd (format "M-[ 1 ; %d F" x)) (kbd (format "%s<end>" tkey)))
946                 ;; page up
947                 (define-key key-translation-map (kbd (format "M-[ 5 ; %d ~" x)) (kbd (format "%s<prior>" tkey)))
948                 ;; page down
949                 (define-key key-translation-map (kbd (format "M-[ 6 ; %d ~" x)) (kbd (format "%s<next>" tkey)))
950                 ;; insert
951                 (define-key key-translation-map (kbd (format "M-[ 2 ; %d ~" x)) (kbd (format "%s<delete>" tkey)))
952                 ;; delete
953                 (define-key key-translation-map (kbd (format "M-[ 3 ; %d ~" x)) (kbd (format "%s<delete>" tkey)))
954                 ;; f1
955                 (define-key key-translation-map (kbd (format "M-[ 1 ; %d P" x)) (kbd (format "%s<f1>" tkey)))
956                 ;; f2
957                 (define-key key-translation-map (kbd (format "M-[ 1 ; %d Q" x)) (kbd (format "%s<f2>" tkey)))
958                 ;; f3
959                 (define-key key-translation-map (kbd (format "M-[ 1 ; %d R" x)) (kbd (format "%s<f3>" tkey)))
960                 ;; f4
961                 (define-key key-translation-map (kbd (format "M-[ 1 ; %d S" x)) (kbd (format "%s<f4>" tkey)))
962                 ;; f5
963                 (define-key key-translation-map (kbd (format "M-[ 15 ; %d ~" x)) (kbd (format "%s<f5>" tkey)))
964                 ;; f6
965                 (define-key key-translation-map (kbd (format "M-[ 17 ; %d ~" x)) (kbd (format "%s<f6>" tkey)))
966                 ;; f7
967                 (define-key key-translation-map (kbd (format "M-[ 18 ; %d ~" x)) (kbd (format "%s<f7>" tkey)))
968                 ;; f8
969                 (define-key key-translation-map (kbd (format "M-[ 19 ; %d ~" x)) (kbd (format "%s<f8>" tkey)))
970                 ;; f9
971                 (define-key key-translation-map (kbd (format "M-[ 20 ; %d ~" x)) (kbd (format "%s<f9>" tkey)))
972                 ;; f10
973                 (define-key key-translation-map (kbd (format "M-[ 21 ; %d ~" x)) (kbd (format "%s<f10>" tkey)))
974                 ;; f11
975                 (define-key key-translation-map (kbd (format "M-[ 23 ; %d ~" x)) (kbd (format "%s<f11>" tkey)))
976                 ;; f12
977                 (define-key key-translation-map (kbd (format "M-[ 24 ; %d ~" x)) (kbd (format "%s<f12>" tkey)))
978                 ;; f13
979                 (define-key key-translation-map (kbd (format "M-[ 25 ; %d ~" x)) (kbd (format "%s<f13>" tkey)))
980                 ;; f14
981                 (define-key key-translation-map (kbd (format "M-[ 26 ; %d ~" x)) (kbd (format "%s<f14>" tkey)))
982                 ;; f15
983                 (define-key key-translation-map (kbd (format "M-[ 28 ; %d ~" x)) (kbd (format "%s<f15>" tkey)))
984                 ;; f16
985                 (define-key key-translation-map (kbd (format "M-[ 29 ; %d ~" x)) (kbd (format "%s<f16>" tkey)))
986                 ;; f17
987                 (define-key key-translation-map (kbd (format "M-[ 31 ; %d ~" x)) (kbd (format "%s<f17>" tkey)))
988                 ;; f18
989                 (define-key key-translation-map (kbd (format "M-[ 32 ; %d ~" x)) (kbd (format "%s<f18>" tkey)))
990                 ;; f19
991                 (define-key key-translation-map (kbd (format "M-[ 33 ; %d ~" x)) (kbd (format "%s<f19>" tkey)))
992                 ;; f20
993                 (define-key key-translation-map (kbd (format "M-[ 34 ; %d ~" x)) (kbd (format "%s<f20>" tkey)))
994
995                 (setq x (+ x 1))
996                 ))
997             )
998         )
999       )
1000   ; (add-hook 'tty-setup-hook 'fix-up-tmux-keys)
1001
1002   ; procmailmode configuration
1003   (load "procmail_mode")
1004
1005   (load "mode-line-cleaner")
1006
1007   (defadvice ask-user-about-supersession-threat (around ask-user-about-supersession-threat-if-necessary)
1008     "Call ask-user-about-supersession-threat only if the buffer is actually obsolete."
1009     (if (or (buffer-modified-p)
1010             (verify-visited-file-modtime)
1011             (< (* 8 1024 1024) (buffer-size))
1012             (/= 0 (call-process-region 1 (+ 1 (buffer-size)) "diff" nil nil nil "-q" (buffer-file-name) "-")))
1013         ad-do-it
1014       (clear-visited-file-modtime)
1015       (not-modified)))
1016   (ad-activate 'ask-user-about-supersession-threat)
1017
1018   ; apparently things like to step on C-;, so we'll use a hack from
1019   ; http://stackoverflow.com/questions/683425/globally-override-key-binding-in-emacs/5340797#5340797 to fix this
1020
1021   (defvar my-keys-minor-mode-map (make-keymap) "my-keys-minor-mode keymap.")
1022
1023   ; use iedit everywhere
1024   (define-key my-keys-minor-mode-map (kbd "C-;") 'iedit-mode)
1025
1026   (define-minor-mode my-keys-minor-mode
1027     "A minor mode so that my key settings override annoying major modes."
1028     t " my-keys" 'my-keys-minor-mode-map)
1029
1030   (my-keys-minor-mode 1)
1031   (defun my-minibuffer-setup-hook ()
1032     (my-keys-minor-mode 0))
1033
1034   (add-hook 'minibuffer-setup-hook 'my-minibuffer-setup-hook)
1035   (defadvice load (after give-my-keybindings-priority)
1036     "Try to ensure that my keybindings always have priority."
1037     (if (not (eq (car (car minor-mode-map-alist)) 'my-keys-minor-mode))
1038         (let ((mykeys (assq 'my-keys-minor-mode minor-mode-map-alist)))
1039           (assq-delete-all 'my-keys-minor-mode minor-mode-map-alist)
1040           (add-to-list 'minor-mode-map-alist mykeys))))
1041   (ad-activate 'load)
1042   (global-set-key "\M- " 'hippie-expand)
1043
1044 #+END_SRC
1045
1046 * END
1047 #+BEGIN_SRC emacs-lisp
1048   (provide 'don-configuration)
1049 #+END_SRC