initial commit

This commit is contained in:
xesc 2023-12-09 15:46:50 +01:00
commit 48bd259cd8
29 changed files with 1107 additions and 0 deletions

20
lua/plugin/surround.lua Normal file
View file

@ -0,0 +1,20 @@
return {
{
"echasnovski/mini.surround",
event = "VeryLazy",
opts = {
mappings = {
add = "<leader>sa",
delete = "<leader>sd",
find = "<leader>sf",
find_left = "<leader>sF",
highlight = "<leader>sh",
replace = "<leader>sr",
update_n_lines = "<leader>sn",
},
},
config = function(_, opts)
require("mini.surround").setup(opts)
end,
}
}