Add todo-comments plugin for annotation highlighting#165
Conversation
Adds folke/todo-comments.nvim to highlight comments like TODO, FIXME, HACK, WARN, NOTE, etc. in Neovim. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
PR Review: Add todo-comments plugin✅ Positive FeedbackCode Quality
Architecture Alignment
Security & Performance
💡 Suggestions for EnhancementConsider Adding Telescope Integration return {
"folke/todo-comments.nvim",
dependencies = { "nvim-lua/plenary.nvim" },
event = "VeryLazy",
opts = {},
keys = {
{ "<leader>st", "<cmd>TodoTelescope<cr>", desc = "TODO/FIXME" },
{ "]t", function() require("todo-comments").jump_next() end, desc = "Next TODO" },
{ "[t", function() require("todo-comments").jump_prev() end, desc = "Previous TODO" },
},
}This would:
Alternative: Keep it minimal 📋 Test Plan EnhancementYour test plan is good. Consider also verifying:
SummaryApproval Status: ✅ Approved This is a solid addition with no issues. The code is correct, follows all repository conventions, and adds useful functionality. The enhancement suggestions are optional - the PR is perfectly acceptable as-is for a minimal working configuration. |
Summary
folke/todo-comments.nvimplugin to Neovim configurationVeryLazyeventTest plan
make cuito deploy the configuration🤖 Generated with Claude Code