From 9baa2b8ad85747d6c2114f37a03a2525ffc3f01d Mon Sep 17 00:00:00 2001 From: Thomas Ruoff Date: Mon, 16 Sep 2024 08:17:26 +0200 Subject: [PATCH] add org bullets --- lua/plugins/orgmode.lua | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lua/plugins/orgmode.lua b/lua/plugins/orgmode.lua index bf92947..f98fcbc 100644 --- a/lua/plugins/orgmode.lua +++ b/lua/plugins/orgmode.lua @@ -27,7 +27,7 @@ return { require('orgmode').setup { org_agenda_files = '~/org/**/*', org_default_notes_file = '~/org/refile.org', - org_todo_keywords = { 'TODO', 'WAITING', '|', 'DONE', 'DELEGATED' }, + org_todo_keywords = { 'TODO(t)', 'WAIT', '|', 'DONE', 'DELEGATED(e)' }, } vim.api.nvim_create_autocmd({ 'BufNewFile', 'BufRead' }, { @@ -40,4 +40,5 @@ return { }) end, }, + { 'akinsho/org-bullets.nvim', config = true }, }