[Nvim] Let Lazy handle plugins?

This commit is contained in:
2025-02-07 18:30:55 -08:00
parent cee054498a
commit bbaa20a515
7 changed files with 89 additions and 12 deletions

View 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
}