From 50cb50b6d7f6253632150bc2fb5d93ecc2eef2a0 Mon Sep 17 00:00:00 2001 From: Daniel Carrillo Date: Mon, 5 May 2025 09:23:32 +0200 Subject: [PATCH] [neovim] Update blink excludes --- .config/nvim/lua/plugins/blink.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.config/nvim/lua/plugins/blink.lua b/.config/nvim/lua/plugins/blink.lua index 8fe21c7..19d18e4 100644 --- a/.config/nvim/lua/plugins/blink.lua +++ b/.config/nvim/lua/plugins/blink.lua @@ -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,