blob: 6a35641453504b4661bded21bb80fb130842240a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
require("mini.statusline").setup({
set_vim_settings = false,
})
require("mini.surround").setup({
silent = true,
mappings = {
add = "gsa", -- Add surrounding in Normal and Visual modes
delete = "gsd", -- Delete surrounding
find = "gsf", -- Find surrounding (to the right)
find_left = "gsF", -- Find surrounding (to the left)
highlight = "gsh", -- Highlight surrounding
replace = "gsr", -- Replace surrounding
update_n_lines = "gsn", -- Update `n_lines`
},
})
|