Files
nvim/lua/plugins/nvim-surround.lua
2025-05-09 22:16:19 +08:00

17 lines
672 B
Lua

-- surr*ound_words ysiw) (surround_words)
-- *make strings ys$" "make strings"
-- [delete ar*ound me!] ds] delete around me!
-- remove <b>HTML t*ags</b> dst remove HTML tags
-- 'change quot*es' cs'" "change quotes"
-- <b>or tag* types</b> csth1<CR> <h1>or tag types</h1>
-- delete(functi*on calls) dsf function calls
return {
"kylechui/nvim-surround",
version = "*", -- Use for stability; omit to use `main` branch for the latest features
event = "VeryLazy",
config = function()
require("nvim-surround").setup({
})
end,
}