return { { "folke/todo-comments.nvim", cmd = { "TodoTrouble", "TodoTelescope" }, event = "BufReadPost", config = true, -- stylua: ignore keys = { { "]t", function() require("todo-comments").jump_next() end, desc = "Next todo comment" }, { "[t", function() require("todo-comments").jump_prev() end, desc = "Previous todo comment" }, { "tt", "TodoTrouble", desc = "Todo Trouble" }, { "tT", "TodoTrouble keywords=TODO,FIX,FIXME", desc = "Todo Trouble" }, { "tf", "TodoTelescope", desc = "Todo Telescope" }, }, }, { "JoosepAlviste/nvim-ts-context-commentstring" }, { "echasnovski/mini.comment", event = "VeryLazy", opts = { hooks = { pre = function() require("ts_context_commentstring.internal").update_commentstring({}) end, }, }, config = function(_, opts) require("mini.comment").setup(opts) end, }, }