switch to luasnip, added better snipplets

This commit is contained in:
nova
2023-09-25 23:44:59 +02:00
commit 7f9c18536b
10 changed files with 737 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
local lazypath = vim.fn.stdpath("data") .. "/lazy/lazy.nvim"
if not vim.loop.fs_stat(lazypath) then
vim.fn.system({
"git",
"clone",
"--filter=blob:none",
"https://github.com/folke/lazy.nvim.git",
"--branch=stable", -- latest stable release
lazypath,
})
end
vim.opt.rtp:prepend(lazypath)