fix comma missint

This commit is contained in:
xusheng 2023-09-29 08:48:58 -04:00
parent f8f5663962
commit 281a0bbd8f
1 changed files with 2 additions and 2 deletions

View File

@ -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,