diff options
Diffstat (limited to 'emacs')
-rw-r--r-- | emacs/init.el | 18 |
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) |