From b7a269f03c75b8d238036802bd59a4c97bae4f7b Mon Sep 17 00:00:00 2001 From: Adang23 <122211611+Adang23@users.noreply.github.com> Date: Thu, 14 Sep 2023 08:41:03 -0400 Subject: [PATCH] Update init.lua for telescope windows support --- init.lua | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/init.lua b/init.lua index f3ea6506..04bb3340 100644 --- a/init.lua +++ b/init.lua @@ -182,7 +182,10 @@ require('lazy').setup({ 'nvim-telescope/telescope-fzf-native.nvim', -- NOTE: If you are having trouble with this installation, -- refer to the README for telescope-fzf-native for more instructions. - build = 'make', + -- for non-windows + -- build = 'make', + -- for windows + build = 'cmake -S. -Bbuild -DCMAKE_BUILD_TYPE=Release && cmake --build build --config Release && cmake --install build --prefix build' cond = function() return vim.fn.executable 'make' == 1 end,