0023233eef
* fix formatting in pluginList, luasnip * don't use pcall on highlights * sync and compile fzf and media files only when the error occurs, add a help text telling tbe user to restart neovim
13 lines
248 B
Lua
13 lines
248 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()
|