Using gmake instead of make for *BSD compat

This commit is contained in:
Imbus 2025-01-19 19:50:25 +01:00
parent d5ec1083d3
commit 6e5d407f7b

View file

@ -9,12 +9,12 @@ return { -- Fuzzy Finder (files, lsp, etc)
-- `build` is used to run some command when the plugin is installed/updated.
-- This is only run then, not every time Neovim starts up.
build = 'make',
build = 'gmake',
-- `cond` is a condition used to determine whether this plugin should be
-- installed and loaded.
cond = function()
return vim.fn.executable 'make' == 1
return vim.fn.executable 'gmake' == 1
end,
},
{ 'nvim-telescope/telescope-ui-select.nvim' },