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