mirror of
https://github.com/StepanovPlaton/dotfiles.git
synced 2026-04-03 20:30:46 +04:00
21 lines
407 B
Lua
21 lines
407 B
Lua
return {
|
|
{
|
|
"kylechui/nvim-surround",
|
|
config = function()
|
|
require("nvim-surround").setup()
|
|
end
|
|
|
|
-- insert = "<C-g>s",
|
|
-- insert_line = "<C-g>S",
|
|
-- normal = "ys",
|
|
-- normal_cur = "yss",
|
|
-- normal_line = "yS",
|
|
-- normal_cur_line = "ySS",
|
|
-- visual = "S",
|
|
-- visual_line = "gS",
|
|
-- delete = "ds",
|
|
-- change = "cs",
|
|
-- change_line = "cS",
|
|
},
|
|
}
|