nvim-config/lua/plugins/comments.lua

16 lines
368 B
Lua
Raw Normal View History

return {
-- add this to your lua/plugins.lua, lua/plugins/init.lua, or the file you keep your other plugins:
{
"numToStr/Comment.nvim",
opts = {
-- add any options here
},
lazy = false,
},
{
"folke/todo-comments.nvim",
dependencies = { "nvim-lua/plenary.nvim" },
opts = {},
},
}