mirror of https://github.com/tiyn/dotfiles
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
694 B
23 lines
694 B
return {
|
|
-- todo symbols and highlighting
|
|
{
|
|
'folke/todo-comments.nvim',
|
|
dependencies = { 'nvim-lua/plenary.nvim' },
|
|
opts = {
|
|
keywords = {
|
|
ERRO = { icon = Error_sign, color = "error" },
|
|
WARN = { icon = Warn_sign, color = "warning" },
|
|
HACK = { icon = Hack_sign, color = "warning" },
|
|
HINT = { icon = Hint_sign, color = "hint" },
|
|
TODO = { icon = Todo_sign, color = "info" },
|
|
INFO = { icon = Info_sign, color = "hint", alt = { "NOTE" } },
|
|
PERF = { icon = Perfect_sign, color = "default" },
|
|
TEST = { icon = Test_sign, color = "test" }
|
|
},
|
|
colors = {
|
|
default = { "Operator" }
|
|
}
|
|
}
|
|
}
|
|
}
|