initial commit
This commit is contained in:
commit
48bd259cd8
29 changed files with 1107 additions and 0 deletions
20
lua/plugin/surround.lua
Normal file
20
lua/plugin/surround.lua
Normal 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,
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue