summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBlaise Thompson <blaise@untzag.com>2018-09-03 09:35:01 -0500
committerBlaise Thompson <blaise@untzag.com>2018-09-03 09:35:01 -0500
commitd5db9bf7c3509a93b3d04cc6fad5c5843c148ab9 (patch)
treedde25f674f8bd8d03a3796593ede1fbca278b4d5
parent3ef16b5fb20182c9ff5c5fcd7ca526f7a3164e40 (diff)
2018-09-03 09:35
-rw-r--r--emacs/init.el18
1 files changed, 18 insertions, 0 deletions
diff --git a/emacs/init.el b/emacs/init.el
index 59f25a2..98fb690 100644
--- a/emacs/init.el
+++ b/emacs/init.el
@@ -3,6 +3,13 @@
;; If you edit it by hand, you could mess it up, so be careful.
;; Your init file should contain only one such instance.
;; If there is more than one, they won't work right.
+ '(ledger-reports
+ (quote
+ (("test" "ledger bal")
+ ("bal" "%(binary) -f %(ledger-file) bal")
+ ("reg" "%(binary) -f %(ledger-file) reg")
+ ("payee" "%(binary) -f %(ledger-file) reg @%(payee)")
+ ("account" "%(binary) -f %(ledger-file) reg %(account)"))))
'(package-selected-packages
(quote
(helm-flyspell flycheck which-key helm-swoop evil-leader helm spaceline evil use-package))))
@@ -221,6 +228,17 @@
;;; keybindings -----------------------------------------------------------------------------------
+
+
+(org-babel-do-load-languages 'org-babel-load-languages
+ (append org-babel-load-languages
+ '((python . t)
+ (ledger . t)
+ (shell .t)
+ (ruby . t))))
+
+
+
(global-set-key "\t" 'company-complete-common)
(evil-leader/set-key "a" 'org-agenda-list)
(evil-leader/set-key "b" 'org-brain-visualize)