From 6e5d407f7b24b8c8e2501bbba39645ffa7071b91 Mon Sep 17 00:00:00 2001 From: Imbus <> Date: Sun, 19 Jan 2025 19:50:25 +0100 Subject: [PATCH] Using gmake instead of make for *BSD compat --- lua/plugins/telescope.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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' },