From b7cb65404af93b1ab3a6520e22752546295504df Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?tr=C3=A9meur?= Date: Fri, 30 Dec 2022 11:56:04 +0000 Subject: [PATCH] Track when todos are done, fetch git token more easily --- config.org | 6 ++++++ snippets/org-mode/git | 6 ++++++ 2 files changed, 12 insertions(+) create mode 100644 snippets/org-mode/git diff --git a/config.org b/config.org index b3a6b19..96ad550 100644 --- a/config.org +++ b/config.org @@ -494,6 +494,12 @@ Export non-breaking spaces properly; from, believe it or not, [[https://orgmode. 'my-html-filter-nobreaks)) #+END_SRC +Track when I complete todos. + +#+BEGIN_SRC emacs-lisp +(setq org-log-done 'time) +#+END_SRC + *** Packages **** =org-agenda-property= diff --git a/snippets/org-mode/git b/snippets/org-mode/git new file mode 100644 index 0000000..c3c896a --- /dev/null +++ b/snippets/org-mode/git @@ -0,0 +1,6 @@ +# name: git-token +# key: git +# -- +`(with-temp-buffer + (insert-file-contents "~/Documents/drive/token-t29") + (buffer-string))`$0 \ No newline at end of file