1
0
mirror of https://github.com/tiyn/dotfiles.git synced 2026-03-17 22:24:46 +01:00
Files
dotfiles/.config/nvim/lua/plugins/todo-comments.lua
2026-03-14 09:42:33 +01:00

23 lines
699 B
Lua

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