Added @dam9000 guard to improve Windows experience, plus comment explaining build step

pull/611/head
Richard Garber 2 years ago
parent da3d4be567
commit 36b8af27af

@ -102,7 +102,15 @@ require('lazy').setup({
-- Snippet Engine & its associated nvim-cmp source
{
'L3MON4D3/LuaSnip',
build = 'make install_jsregexp',
build = (function()
-- Build Step is needed for regex support in snippets
-- This step is not supported in many windows environments
-- Remove if your windows setup supports this
if vim.fn.has 'win32' == 1 then
return
end
return 'make install_jsregexp'
end)(),
},
'saadparwaiz1/cmp_luasnip',

Loading…
Cancel
Save