initial commit

This commit is contained in:
2026-03-08 14:37:55 +00:00
commit 4da672cbc7
62 changed files with 3460 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
-- Snippet engine with pre-built VS Code-style snippets from friendly-snippets.
-- Snippets are lazy-loaded per filetype. Used by nvim-cmp as a completion source.
return {
"L3MON4D3/LuaSnip",
dependencies = {
"rafamadriz/friendly-snippets", -- Community-maintained snippet collection
},
config = function()
require("luasnip.loaders.from_vscode").lazy_load()
end,
}