From a396f4162fc55dab4a8b467ab948d53985861c71 Mon Sep 17 00:00:00 2001 From: sterni Date: Thu, 23 Jan 2025 23:31:18 +0100 Subject: [PATCH] feat(sterni/emacs): open context file on startup MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit context.org tracks ongoing things, e.g. code I'm working on or want to get started on. Tracking means that it contains notes (“context”) on the things in question. These will mainly be links or quick todo lists which will hopefully reduce the amount of open tabs and unread emails (marked as TODO in thunderbird) I have. Having inbox.org open is not as useful since it isn't viewed really: For adding tasks org-capture should be used and for viewing them org-agenda is far superior. Change-Id: I4acbaa33e4c2de40a92393376bb86251d9dceb02 Reviewed-on: https://cl.tvl.fyi/c/depot/+/13044 Reviewed-by: sterni Autosubmit: sterni Tested-by: BuildkiteCI --- users/sterni/emacs/init.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/users/sterni/emacs/init.el b/users/sterni/emacs/init.el index 2e0312235..48122186a 100644 --- a/users/sterni/emacs/init.el +++ b/users/sterni/emacs/init.el @@ -122,7 +122,7 @@ (let ((org-folder (concat (getenv "HOME") "/files/sync/org"))) (setq org-agenda-files (directory-files-recursively org-folder "\\.org$") - org-default-notes-file (concat org-folder "/inbox.org") + org-default-notes-file (concat org-folder "/context.org") initial-buffer-choice org-default-notes-file org-refile-targets '((org-agenda-files . (:maxlevel . 2)))))