mirror of
https://codeberg.org/leana8959/.files.git
synced 2025-12-06 06:39:14 +00:00
parent
dad88aa92f
commit
1bdcd3386e
13 changed files with 0 additions and 0 deletions
17
.config/nvim/plugin/todo-comments.lua
Normal file
17
.config/nvim/plugin/todo-comments.lua
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
require("todo-comments").setup {
|
||||
keywords = {
|
||||
FIX = { icon = " ", color = "error", alt = { "FIXME", "BUG", "FIXIT", "ISSUE" } },
|
||||
TODO = { icon = " ", color = "info" },
|
||||
HACK = { icon = "!", color = "warning", alt = { "DEBUG" } },
|
||||
WARN = { icon = "!", color = "warning", alt = { "WARNING", "XXX" } },
|
||||
NOTE = { icon = "·", color = "hint", alt = { "INFO" } },
|
||||
TEST = { icon = "T", color = "test", alt = { "TESTING", "PASSED", "FAILED" } },
|
||||
UNIMPLEMENTED = { icon = "@", color = "hint" },
|
||||
-- Q = { icon = "?", color = "warning" },
|
||||
-- R = { icon = "=", color = "hint" },
|
||||
},
|
||||
colors = {
|
||||
info = { "#696c77" },
|
||||
hint = { "#696c77" },
|
||||
},
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue