1
0
mirror of https://github.com/dcarrillo/dotfiles.git synced 2025-02-22 22:28:00 +00:00
dotfiles/.config/nvim/lua/plugins/mini-surround.lua

11 lines
244 B
Lua
Raw Normal View History

2025-02-13 18:29:41 +01:00
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
},
})