]> git.donarmstrong.com Git - lib.git/blobdiff - emacs_el/configuration/don-configuration.org
add beancount
[lib.git] / emacs_el / configuration / don-configuration.org
index 478cff1c298aa4f559105a79147b46e8032b23e5..baae5d8763b00c0eee415d3b049959e8697d40ea 100644 (file)
@@ -1379,6 +1379,15 @@ From http://julien.danjou.info/projects/emacs-packages#rainbow-mode, this colori
   )
 #+END_SRC
 
+** Beancount
+#+BEGIN_SRC emacs-lisp
+(use-package beancount
+  :load-path "~/lib/emacs_el/beancount-mode/"
+  :ensure f
+  :mode "\\.beancount\\'"
+  
+  )
+#+END_SRC
 * Email
 ** Mutt
 *** Message-mode
@@ -2472,13 +2481,20 @@ same directory as the org-buffer and insert a link to this file."
   (setq case-fold-search t)
   (setq confirm-kill-emacs (quote y-or-n-p))
   (setq cperl-lazy-help-time nil)
+#+END_SRC
+** Turn on fontlock and icomplete
+#+BEGIN_SRC emacs-lisp
   (global-font-lock-mode 1)
   (icomplete-mode 1)
   (setq log-edit-keep-buffer t)
+#+END_SRC
+** Set mail User agent
+#+BEGIN_SRC emacs-lisp
   (setq mail-user-agent (quote sendmail-user-agent))
-  (setq markdown-enable-math t)
-  (setq markdown-follow-wiki-link-on-enter nil)
   (setq mutt-alias-file-list (quote ("~/.mutt/aliases" "~/.mail_aliases")))
+#+END_SRC
+** PS Printing
+#+BEGIN_SRC emacs-lisp
   (setq ps-footer-font-size (quote (8 . 10)))
   (setq ps-header-font-size (quote (8 . 10)))
   (setq ps-header-title-font-size (quote (10 . 10)))
@@ -2486,19 +2502,20 @@ same directory as the org-buffer and insert a link to this file."
   (setq ps-print-footer t)
   (setq ps-print-footer-frame nil)
   (setq ps-print-only-one-header t)
+#+END_SRC
+** Only single spacing on sentences
+#+BEGIN_SRC emacs-lisp
   (setq sentence-end "[.?!][]\"')]*\\($\\|   \\| \\)[    
   ]*")
   (setq sentence-end-double-space nil)
   ; enable matching parenthesis
+#+END_SRC
+** Display paren mode
+#+BEGIN_SRC emacs-lisp
   (show-paren-mode 1)
-  (tool-bar-mode -1)
-  (setq user-mail-address "don@donarmstrong.com")
-  (setq vc-delete-logbuf-window nil)
-  (setq vc-follow-symlinks t)
+  (setq show-paren-delay 0.2)
 
-  ;; use git before SVN; use CVS earlier, because I have CVS
-  ;; repositories inside of git directories
-  (setq vc-handled-backends (quote (CVS Git RCS SVN SCCS Bzr Hg Mtn Arch)))
+  (setq user-mail-address "don@donarmstrong.com")
 
   ;; switch back to the old primary selection method
   (setq x-select-enable-clipboard nil)