mirror of
https://github.com/LazyVim/LazyVim.git
synced 2025-06-24 17:58:51 +02:00
fix(luasnip): dont build jsregexp on Windows
This commit is contained in:
parent
16e4a3f8fd
commit
f6f3ce4a9b
1 changed files with 1 additions and 1 deletions
|
@ -3,7 +3,7 @@ return {
|
||||||
-- snippets
|
-- snippets
|
||||||
{
|
{
|
||||||
"L3MON4D3/LuaSnip",
|
"L3MON4D3/LuaSnip",
|
||||||
build = "make install_jsregexp",
|
build = (not jit.os:find("Windows")) and "make install_jsregexp" or nil,
|
||||||
dependencies = {
|
dependencies = {
|
||||||
"rafamadriz/friendly-snippets",
|
"rafamadriz/friendly-snippets",
|
||||||
config = function()
|
config = function()
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue