From 151a7e5833fd66064c6557918f7a550b9dfc382a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sascha=20L=C3=BCdecke?= Date: Fri, 11 Oct 2024 21:08:53 +0200 Subject: [PATCH] Org mode: todo states with fastmode TODO STARTED PLANNING | DONE UNPLANNED --- lua/plugins.lua | 1 + 1 file changed, 1 insertion(+) diff --git a/lua/plugins.lua b/lua/plugins.lua index 115c3a5..869ec0a 100644 --- a/lua/plugins.lua +++ b/lua/plugins.lua @@ -86,6 +86,7 @@ require("lazy").setup({ require('orgmode').setup({ org_agenda_files = '~/orgfiles/**/*', org_default_notes_file = '~/orgfiles/refile.org', + org_todo_keywords = {'TODO(t)', 'STARTED(s)', 'PLANNED(p)', '|', 'DONE(d)', 'UNPLANNED(u)' }, }) -- NOTE: If you are using nvim-treesitter with ~ensure_installed = "all"~ option