---@module 'lazy' ---@type LazySpec return { { 'folke/todo-comments.nvim', -- for highlighting TODO and stuff comments event = 'VeryLazy', dependencies = { 'nvim-lua/plenary.nvim' }, ---@module 'todo-comments' ---@type TodoOptions opts = { signs = false, colors = { hint = { "Comment" } }, }, config = function(_, opts) local todo = require 'todo-comments' todo.setup(opts) Map('n', 'st', 'TodoTelescope keywords=TODO,FIX,BUG,WARN', { desc = '[S]earch [T]odos]' }) end, } }