diff --git a/lua/plugins/telescope.lua b/lua/plugins/telescope.lua index c3ef163..4ba42f4 100644 --- a/lua/plugins/telescope.lua +++ b/lua/plugins/telescope.lua @@ -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' },