feat(ide): smart comments

This commit is contained in:
Guz
2024-12-07 14:37:25 -03:00
parent abbcb0bab1
commit 5be8d4cd59

View File

@@ -116,6 +116,19 @@ return {
end,
},
-- Smart comments
{
"comment.nvim",
after = function()
require("Comment").setup({
mappings = {
basic = true,
extra = true,
},
})
end,
},
-- Git integration, enabled just in git repos
{
"gitsigns.nvim",