style: reformat todo-comments file

This commit is contained in:
Oliver Ladner 2025-05-12 10:38:17 +02:00
commit 78f2adde7f

View file

@ -1,16 +1,18 @@
-- Highlight, list and search todo comments in your projects
-- https://github.com/folke/todo-comments.nvim
return {
"folke/todo-comments.nvim",
lazy = true,
event = "VimEnter",
-- TODO: a todo
-- WARN: a warning
-- PERF: a performance remark
-- NOTE: a note
-- FIXME: a fixme
dependencies = {
"nvim-lua/plenary.nvim",
},
opts = { signs = false },
"folke/todo-comments.nvim",
lazy = true,
event = "VimEnter",
enabled = true,
-- TODO: a todo
-- WARN: a warning
-- PERF: a performance remark
-- NOTE: a note
-- FIXME: a fixme
-- XXX: something else
dependencies = {
"nvim-lua/plenary.nvim",
},
opts = { signs = false },
}