From 5be8d4cd590bd7db2a07b93b1aecef791487c629 Mon Sep 17 00:00:00 2001 From: "Gustavo L de Mello (Guz)" Date: Sat, 7 Dec 2024 14:37:25 -0300 Subject: [PATCH] feat(ide): smart comments --- lua/dot013/plugins/ide.lua | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/lua/dot013/plugins/ide.lua b/lua/dot013/plugins/ide.lua index 1c7629d..6746cf1 100644 --- a/lua/dot013/plugins/ide.lua +++ b/lua/dot013/plugins/ide.lua @@ -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",