]> git.donarmstrong.com Git - lib.git/blobdiff - emacs_el/configuration/don-configuration.org
add beancount
[lib.git] / emacs_el / configuration / don-configuration.org
index df9cd979264ad332e0148e6e33333a6cd4a788bc..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,6 +2502,9 @@ 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)