2021-07-19 01:58:28 +01:00
|
|
|
local present, luasnip = pcall(require, "luasnip")
|
|
|
|
if not present then
|
2021-07-15 16:43:17 +01:00
|
|
|
return
|
|
|
|
end
|
|
|
|
|
|
|
|
luasnip.config.set_config(
|
|
|
|
{
|
|
|
|
history = true,
|
|
|
|
updateevents = "TextChanged,TextChangedI"
|
|
|
|
}
|
|
|
|
)
|
|
|
|
require("luasnip/loaders/from_vscode").load()
|