From 86ee347e45a51f09471aca75bcc0476c2d046727 Mon Sep 17 00:00:00 2001 From: Price Hiller Date: Sun, 4 Feb 2024 01:39:19 -0600 Subject: [PATCH] feat(nvim): enable the orgmode notification engine --- dots/.config/nvim/lua/plugins/configs/org-mode.lua | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/dots/.config/nvim/lua/plugins/configs/org-mode.lua b/dots/.config/nvim/lua/plugins/configs/org-mode.lua index dcf080af..1486d85f 100644 --- a/dots/.config/nvim/lua/plugins/configs/org-mode.lua +++ b/dots/.config/nvim/lua/plugins/configs/org-mode.lua @@ -35,6 +35,13 @@ return { "~/Git/College/**/*", "~/Notes/**/*", }, + notifications = { + enabled = true, + cron_enabled = true, + repeater_reminder_time = { 2880, 1440, 720, 360, 180, 60, 30, 15, 10, 5, 0 }, + deadline_warning_reminder_time = { 2880, 1440, 720, 360, 180, 60, 30, 15, 10, 5, 0 } + }, + org_id_link_to_org_use_id = true, org_default_notes_file = "~/Notes/notes.org", org_agenda_start_day = "-1d", calendar_week_start_day = 0,