1
0
mirror of https://github.com/dcarrillo/dotfiles.git synced 2025-06-03 10:39:02 +00:00

[neovim] Update blink excludes

This commit is contained in:
Daniel Carrillo 2025-05-05 09:23:32 +02:00
parent 070a7fceb4
commit 50cb50b6d7
Signed by: dcarrillo
GPG Key ID: E4CD5C09DAED6E16

View File

@ -1,7 +1,7 @@
require("blink.cmp").setup({
-- disable completion for certain filetypes
enabled = function()
return not vim.tbl_contains({ "sagarename", "DressingIngput" }, vim.bo.filetype)
return not vim.tbl_contains({ "sagarename", "DressingInput", "AvanteInput" }, vim.bo.filetype)
and vim.bo.buftype ~= "prompt"
and vim.b.completion ~= false
end,