add some utils to nvim

This commit is contained in:
Alexander Navarro 2023-10-01 18:55:33 -03:00
parent 30a074d5f3
commit f8822b6255
4 changed files with 25 additions and 3 deletions

View file

@ -0,0 +1,5 @@
return {
"echasnovski/mini.pairs",
event = "VeryLazy",
opts = {},
}

View file

@ -0,0 +1,15 @@
return {
{
"echasnovski/mini.comment",
version = "*",
event = "VeryLazy",
opts = {
options = {
custom_commentstring = function()
return require("ts_context_commentstring.internal").calculate_commentstring()
or vim.bo.commentstring
end,
},
},
},
}

View file

@ -23,9 +23,6 @@ return {
}, },
}, },
-- "gc" to comment visual regions/lines
{ "numToStr/Comment.nvim", opts = {} },
{ {
"famiu/bufdelete.nvim", "famiu/bufdelete.nvim",
config = nil, config = nil,

View file

@ -0,0 +1,5 @@
return {
"echasnovski/mini.surround",
version = "*",
opts = {},
}