From 49cc6788ef47eb6ead924a401fc24d3ac8e71a24 Mon Sep 17 00:00:00 2001 From: Robert Morrison Date: Fri, 10 Apr 2026 02:38:28 +0100 Subject: [PATCH] feat(todo-comments): add todo-comments I like having my TODO/WARN/ERROR comments really really obvious --- lua/plugins/spec/todo-comments.lua | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 lua/plugins/spec/todo-comments.lua diff --git a/lua/plugins/spec/todo-comments.lua b/lua/plugins/spec/todo-comments.lua new file mode 100644 index 0000000..fbbce14 --- /dev/null +++ b/lua/plugins/spec/todo-comments.lua @@ -0,0 +1,12 @@ +---@module 'lazy.nvim' +---@type LazySpec[] +return{ + { + "folke/todo-comments.nvim", + dependencies = { "nvim-lua/plenary.nvim" }, + opts = { + + }, + event = "BufRead" + } +}