mirror of
https://github.com/LazyVim/LazyVim.git
synced 2025-06-21 16:39:06 +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
|
||||
{
|
||||
"L3MON4D3/LuaSnip",
|
||||
build = "make install_jsregexp",
|
||||
build = (not jit.os:find("Windows")) and "make install_jsregexp" or nil,
|
||||
dependencies = {
|
||||
"rafamadriz/friendly-snippets",
|
||||
config = function()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue