my-nvim-lua/lua/plugins/configs/luasnip.lua
2021-08-27 06:44:58 +05:30

12 lines
228 B
Lua

local present, luasnip = pcall(require, "luasnip")
if not present then
return
end
luasnip.config.set_config {
history = true,
updateevents = "TextChanged,TextChangedI",
}
require("luasnip/loaders/from_vscode").load()