From 281a0bbd8f883b0d6525080dd69eaf39192c3b9a Mon Sep 17 00:00:00 2001 From: xusheng Date: Fri, 29 Sep 2023 08:48:58 -0400 Subject: [PATCH] fix comma missint --- init.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/init.lua b/init.lua index 04bb3340..d5a283f8 100644 --- a/init.lua +++ b/init.lua @@ -183,9 +183,9 @@ require('lazy').setup({ -- NOTE: If you are having trouble with this installation, -- refer to the README for telescope-fzf-native for more instructions. -- for non-windows - -- build = 'make', + build = 'make', -- for windows - build = 'cmake -S. -Bbuild -DCMAKE_BUILD_TYPE=Release && cmake --build build --config Release && cmake --install build --prefix build' + -- 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,