Skip to content

Commit

Permalink
fix(luasnip): dont build jsregexp on Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
folke committed Mar 2, 2023
1 parent 16e4a3f commit f6f3ce4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lua/lazyvim/plugins/coding.lua
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down

0 comments on commit f6f3ce4

Please sign in to comment.