-
Hi, does anyone know how to disable blink.cmp inside a dressing.nvim input "window"? Regards |
Beta Was this translation helpful? Give feedback.
Answered by
Hashino
Dec 24, 2024
Replies: 1 comment
-
the require("blink.cmp").setup({
enabled = function()
return not vim.tbl_contains({}, vim.bo.filetype)
and vim.bo.buftype ~= "nofile"
and vim.bo.buftype ~= "prompt"
and vim.b.completion ~= false
end,
} |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
abenz1267
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
the
vim.bo.buftype ~= "nofile"
is what did it for me