This is the first commit that actually adds files to the repo. Yes it's a bad commit but now the major features are here
14 lines
230 B
Lua
14 lines
230 B
Lua
local ok, luasnip = pcall(require,"luasnip")
|
|
|
|
if not ok then
|
|
return
|
|
end
|
|
|
|
luasnip.config.set_config {
|
|
|
|
updateevents = "TextChanged,TextChangedI",
|
|
|
|
enable_autosnippets = true,
|
|
}
|
|
require("luasnip.loaders.from_vscode").lazy_load()
|