]> git.donarmstrong.com Git - home-base.git/blobdiff - .emacs
update debian hosts
[home-base.git] / .emacs
diff --git a/.emacs b/.emacs
index e16f95b0573e66472e944f4d87f76b219a54f000..97abbe2ab791db88b65c7a32c0aa67b44f35b7bf 100644 (file)
--- a/.emacs
+++ b/.emacs
  '(iswitchb-prompt-newbuffer nil)
  '(log-edit-keep-buffer t)
  '(mail-user-agent (quote sendmail-user-agent))
+ '(markdown-enable-math t)
+ '(markdown-follow-wiki-link-on-enter nil)
  '(mutt-alias-file-list (quote ("~/.mutt/aliases" "~/.mail_aliases")))
- '(org-agenda-files (quote ("~/projects/debbugs/notes.org" "~/projects/notes/notes.org" "~/projects/origins_of_life/paper/figure_list.org" "~/projects/origins_of_life/notes.org" "~/projects/sysadmin/sndservers/notes.org" "~/projects/chaim/notes.org" "~/projects/fh/notes.org")))
+ '(org-agenda-files (quote ("~/projects/debbugs/notes.org" "~/projects/notes/notes.org" "~/projects/origins_of_life/paper/figure_list.org" "~/projects/origins_of_life/ool.org" "~/projects/sysadmin/sndservers/sndservers.org" "~/projects/chaim/chaim.org" "~/projects/fh/fh.org" "~/projects/notes/library_books.org")))
  '(post-email-address "don@donarmstrong.com")
  '(post-kill-quoted-sig nil)
  '(post-mail-message "mutt\\(ng\\|\\)-[a-z0-9]+-[0-9]+-.*")
@@ -43,7 +45,9 @@
  '(sentence-end-double-space nil)
  '(show-paren-mode t)
  '(tool-bar-mode nil nil (tool-bar))
- '(user-mail-address "don@donarmstrong.com"))
+ '(user-mail-address "don@donarmstrong.com")
+ '(vc-delete-logbuf-window nil)
+ '(vc-follow-symlinks t))
 (fset 'perl-mode 'cperl-mode)
 ;;(load-file "cperl-mode.el")
 (add-to-list 'load-path '"~/lib/emacs_el/")
@@ -64,6 +68,8 @@
 ;;(require 'fixme)
 (require 'google-weather)
 (require 'org-google-weather)
+(setq org-google-weather-format "%i %c, [%l,%h] %s %C")
+
 
 (global-set-key "\C-xp" 'server-edit)
 
@@ -84,6 +90,9 @@
 (add-to-list 'auto-mode-alist '("mutt-[a-z0-9]+-[0-9]+-" . post-mode))
 (add-to-list 'auto-mode-alist '("muttrc" . muttrc-mode))
 
+(add-to-list 'auto-mode-alist '("\\.mdwn$" . markdown-mode))
+
+
 
 (global-unset-key "\M-g")
 (global-set-key "\M-g" 'goto-line)
 (font-latex-match-reference-make)
 (add-to-list 'font-latex-match-function-keywords "DLA")
 (add-to-list 'font-latex-match-function-keywords "RZ")
+(add-to-list 'font-latex-match-function-keywords "OM")
+(add-to-list 'font-latex-match-function-keywords "DL")
 (add-to-list 'font-latex-match-function-keywords "fixme")
 (add-to-list 'font-latex-match-function-keywords "acs")
 (add-to-list 'font-latex-match-function-keywords "acsp")
 
 ;;; outlining support for ess modes
 (add-hook 'ess-mode-hook
-            '(lambda ()
-               (outline-minor-mode)
-               (setq outline-regexp "\\(^#\\{4,5\\} \\)\\|\\(^[a-zA-Z0-9_\.]+ ?<- ?function(.*{\\)")
-               (defun outline-level
-                 (lambda () (interactive) (cond ((looking-at "^##### ") 1)((looking-at "^#### ") 2)((looking-at "^[a-zA-Z0-9_\.]+ ?<- ?function(.*{") 3) (t 1000)))
-               )))
\ No newline at end of file
+         '(lambda ()
+            (outline-minor-mode)
+            (setq outline-regexp "\\(^#\\{4,5\\} \\)\\|\\(^[a-zA-Z0-9_\.]+ ?<- ?function(.*{\\)")
+            (defun outline-level
+              (lambda () (interactive) (cond ((looking-at "^##### ") 1)((looking-at "^#### ") 2)((looking-at "^[a-zA-Z0-9_\.]+ ?<- ?function(.*{") 3) (t 1000)))
+               )))
+
+ ; Outline-minor-mode key map
+ (define-prefix-command 'cm-map nil "Outline-")
+ ; HIDE
+ (define-key cm-map "q" 'hide-sublevels)    ; Hide everything but the top-level headings
+ (define-key cm-map "t" 'hide-body)         ; Hide everything but headings (all body lines)
+ (define-key cm-map "o" 'hide-other)        ; Hide other branches
+ (define-key cm-map "c" 'hide-entry)        ; Hide this entry's body
+ (define-key cm-map "l" 'hide-leaves)       ; Hide body lines in this entry and sub-entries
+ (define-key cm-map "d" 'hide-subtree)      ; Hide everything in this entry and sub-entries
+ ; SHOW
+ (define-key cm-map "a" 'show-all)          ; Show (expand) everything
+ (define-key cm-map "e" 'show-entry)        ; Show this heading's body
+ (define-key cm-map "i" 'show-children)     ; Show this heading's immediate child sub-headings
+ (define-key cm-map "k" 'show-branches)     ; Show all sub-headings under this heading
+ (define-key cm-map "s" 'show-subtree)      ; Show (expand) everything in this heading & below
+ ; MOVE
+ (define-key cm-map "u" 'outline-up-heading)                ; Up
+ (define-key cm-map "n" 'outline-next-visible-heading)      ; Next
+ (define-key cm-map "p" 'outline-previous-visible-heading)  ; Previous
+ (define-key cm-map "f" 'outline-forward-same-level)        ; Forward - same level
+ (define-key cm-map "b" 'outline-backward-same-level)       ; Backward - same level
+ (global-set-key "\M-o" cm-map)
+
+(defun my-org-mode-setup ()
+ (when (and (buffer-file-name)
+            (file-exists-p (buffer-file-name)))
+  (load-library "reftex")
+  (and (buffer-file-name)
+        (file-exists-p (buffer-file-name))
+        (reftex-parse-all))
+   (reftex-set-cite-format
+     '((?b . "[[bib::%l]]")
+       (?n . "[[note::%l]]"))))
+   (define-key org-mode-map "\C-c\C-g" 'reftex-citation)
+)
+(add-hook 'org-mode-hook 'my-org-mode-setup)
+
+(setq org-mobile-directory "/rzlab.ucr.edu:/sites/dav.donarmstrong.com/root/org/")
+(setq org-directory "/home/don/org-mode/")
+(setq org-mobile-inbox-for-pull "/home/don/org-mode/from-mobile.org")