mv luasnip config to others.lua

This commit is contained in:
siduck76 2021-08-28 09:39:38 +05:30
parent d5f4c04424
commit 5db010e870
4 changed files with 15 additions and 13 deletions

View File

@ -1,11 +0,0 @@
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()

View File

@ -68,6 +68,19 @@ M.comment = function()
end
end
M.luasnip = function()
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()
end
M.lspkind = function()
local present, lspkind = pcall(require, "lspkind")
if present then

View File

@ -192,7 +192,7 @@ return packer.startup(function()
wants = "friendly-snippets",
after = "nvim-cmp",
config = function()
require "plugins.configs.luasnip"
require("plugins.configs.others").luasnip()
end,
}