Skip to content

Commit e0a49cc

Browse files
committed
Add a new 'DONE' keyword to todo-comments
I want 'DONE' to have the same fire emoji/icon and coloring as the 'HACK' comment, so that I can mark TODO comments as DONE in my TODO files more easily.
1 parent e9ed0ec commit e0a49cc

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

lua/plugins/todo-comments.lua

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,13 @@ return {
66
'nvim-lua/plenary.nvim',
77
},
88
opts = {
9-
signs = false,
9+
signs = true,
1010
highlight = {
1111
comments_only = false,
1212
},
13+
merge_keywords = true,
14+
keywords = {
15+
HACK = { alt = { 'DONE' } },
16+
},
1317
},
1418
}

0 commit comments

Comments
 (0)