From 483bc7b282e61e918b86e5dc51cdebb379a213e1 Mon Sep 17 00:00:00 2001 From: Price Hiller Date: Tue, 16 Jan 2024 16:45:11 -0600 Subject: [PATCH] refactor(nvim): add College notes path to org mode agenda --- dots/.config/nvim/lua/plugins/configs/org-mode.lua | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/dots/.config/nvim/lua/plugins/configs/org-mode.lua b/dots/.config/nvim/lua/plugins/configs/org-mode.lua index ede7ab9e..7450facc 100644 --- a/dots/.config/nvim/lua/plugins/configs/org-mode.lua +++ b/dots/.config/nvim/lua/plugins/configs/org-mode.lua @@ -30,7 +30,10 @@ return { require("orgmode").setup_ts_grammar() -- Setup orgmode require("orgmode").setup({ - org_agenda_files = "~/Notes/**/*", + org_agenda_files = { + "~/Git/College/**/*", + "~/Notes/**/*" + }, org_default_notes_file = "~/Notes/notes.org", org_startup_folded = "inherit", org_todo_keywords = { "TODO(t)", "NEXT(n)", "|", "DONE(d)", "CANCELLED(c)" },