diff options
author | Kyle Meyer <kyle@kyleam.com> | 2018-12-09 15:56:21 -0500 |
---|---|---|
committer | Kyle Meyer <kyle@kyleam.com> | 2018-12-09 15:56:37 -0500 |
commit | 7ead11886a30dc4b33bb2852806b256605106c61 (patch) | |
tree | 1ef281107a288c0688d588cc1b08979af31ade28 | |
parent | f2da8092e9f49cb669af4c4f6979a8ecac7b7448 (diff) | |
download | emacs.d-7ead11886a30dc4b33bb2852806b256605106c61.tar.gz |
Load orgit by default
-rw-r--r-- | init.el | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -192,7 +192,8 @@ (define-key km/org-prefix-map "r" #'org-element-cache-reset) - (require 'org-notmuch)) + (require 'org-notmuch) + (require 'orgit)) (use-package ox-latex :config @@ -1097,6 +1098,9 @@ (put 'magit-edit-line-commit 'disabled nil) (put 'magit-diff-edit-hunk-commit 'disabled nil)) +(use-package orgit + :load-path "~/src/emacs/orgit/") + (use-package km-magit :init (bind-keys :map km/git-map |