mirror of
https://github.com/CompeyDev/my-nvim-setup.git
synced 2024-12-13 13:30:41 +00:00
11 lines
228 B
Lua
11 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()
|