kickstart.nvim/lua/plugins/sensible.lua

24 lines
511 B
Lua

return {
-- Easier comments (gc / gcc)
{
"numToStr/Comment.nvim",
event = "VeryLazy",
config = function()
require("Comment").setup()
end,
},
-- Actions that work on surrounding context
{ "tpope/vim-surround", event = "VeryLazy" },
{ "tpope/vim-unimpaired", event = "VeryLazy" },
{
"folke/todo-comments.nvim",
dependencies = {
"nvim-lua/plenary.nvim",
},
event = "VeryLazy",
config = function()
require("todo-comments").setup()
end,
},
}