lazy load the vscode snippets
This commit is contained in:
parent
f736a1c57f
commit
27f6f13769
5
init.lua
5
init.lua
|
@ -413,7 +413,7 @@ require('lazy').setup({
|
|||
|
||||
-- `neodev` configures Lua LSP for your Neovim config, runtime and plugins
|
||||
-- used for completion, annotations and signatures of Neovim apis
|
||||
{ 'folke/neodev.nvim', opts = {} },
|
||||
{ 'folke/neodev.nvim', opts = {}, ft = 'lua' },
|
||||
},
|
||||
config = function()
|
||||
-- Brief Aside: **What is LSP?**
|
||||
|
@ -656,6 +656,9 @@ require('lazy').setup({
|
|||
end
|
||||
return 'make install_jsregexp'
|
||||
end)(),
|
||||
config = function()
|
||||
require('luasnip.loaders.from_vscode').lazy_load()
|
||||
end,
|
||||
},
|
||||
'saadparwaiz1/cmp_luasnip',
|
||||
|
||||
|
|
Loading…
Reference in New Issue