Using gmake instead of make for *BSD compat
This commit is contained in:
parent
d5ec1083d3
commit
6e5d407f7b
1 changed files with 2 additions and 2 deletions
|
@ -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' },
|
||||
|
|
Loading…
Reference in a new issue