fix: nvim: add condition to cmp-fish

This commit is contained in:
qwjyh 2024-03-18 10:31:49 +09:00
parent 9bdeeb7fad
commit 9fe0875062

View file

@ -105,6 +105,9 @@ require('lazy').setup({
{ {
"mtoohey31/cmp-fish", "mtoohey31/cmp-fish",
ft = 'fish', ft = 'fish',
cond = function()
return vim.fn.has('win32') == 0
end
}, },
}, },
}, },