Skip install jsregexp for windows

This commit is contained in:
2023-09-11 13:38:30 +02:00
parent e0e4256547
commit a8e6106baf
2 changed files with 10 additions and 3 deletions
+5 -1
View File
@@ -35,7 +35,11 @@ local plugins = {
"L3MON4D3/LuaSnip",
config = function () require("plugins.config.luasnip") end,
-- comment out on windows and install jsregexp manually
build = "make install_jsregexp",
build = (
require("utils").os_name ~= "Windows_NT"
and "make install_jsregexp"
or nil
),
version = "2.*",
},
{