mirror of
https://github.com/LazyVim/starter.git
synced 2026-07-23 21:11:03 +00:00
feat: Added nvim surround
This commit is contained in:
parent
57a0567bc4
commit
20dedf9300
1 changed files with 10 additions and 0 deletions
10
lua/plugins/nvim-surround.lua
Normal file
10
lua/plugins/nvim-surround.lua
Normal file
|
|
@ -0,0 +1,10 @@
|
||||||
|
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({
|
||||||
|
-- Configuration here, or leave empty to use defaults
|
||||||
|
})
|
||||||
|
end,
|
||||||
|
}
|
||||||
Loading…
Add table
Reference in a new issue