refactor(nvim): add College notes path to org mode agenda

This commit is contained in:
Price Hiller 2024-01-16 16:45:11 -06:00
parent 0ba273908e
commit 483bc7b282
Signed by: Price
SSH Key Fingerprint: SHA256:Y4S9ZzYphRn1W1kbJerJFO6GGsfu9O70VaBSxJO7dF8

View File

@ -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)" },