1
0
mirror of https://github.com/dcarrillo/dotfiles.git synced 2025-07-03 08:59:24 +00:00

[neovim] Add mini-surround

This commit is contained in:
2025-02-13 18:29:41 +01:00
parent 2059c85c13
commit 7972bb6ebb
5 changed files with 37 additions and 24 deletions

View File

@ -0,0 +1,10 @@
require("mini.surround").setup({
mappings = {
add = "sa",
delete = "sd",
replace = "sr",
update_n_lines = "",
suffix_last = "", -- Suffix to search with "prev" method
suffix_next = "", -- Suffix to search with "next" method
},
})