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 }, }