diff options
author | Franck Cuny <fcuny@twitter.com> | 2019-12-09 12:34:19 -0800 |
---|---|---|
committer | Franck Cuny <fcuny@twitter.com> | 2019-12-09 12:34:19 -0800 |
commit | 851551969a3e5089495b933d1e64eb9d58cfd1eb (patch) | |
tree | f02c249da0096e0d4973c50c286087089e5eebdb /emacs | |
parent | [org] Add template for meeting / interviews. (diff) | |
download | emacs.d-851551969a3e5089495b933d1e64eb9d58cfd1eb.tar.gz |
[org] add `orgit` to my configuration.
`orgit` allows you to link to a magit buffer in org-mode.
Diffstat (limited to '')
-rw-r--r-- | emacs.d/custom/fcuny-org.el | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/emacs.d/custom/fcuny-org.el b/emacs.d/custom/fcuny-org.el index 4817a9e..dae6c7a 100644 --- a/emacs.d/custom/fcuny-org.el +++ b/emacs.d/custom/fcuny-org.el @@ -250,6 +250,9 @@ _g n_: go to notes (use-package htmlize :ensure t) +(use-package orgit + :ensure t) + (defun fcuny/org-todo-age-time (&optional pos) (let ((stamp (org-entry-get (or pos (point)) "CREATED" t))) (when stamp |