Replies: 3 comments
-
Soon we will respect a |
Beta Was this translation helpful? Give feedback.
-
Since codeium.nvim uses nvim-cmp for managing completion, you can configure nvim-cmp plugin to suggest only for some files: hrsh7th/nvim-cmp#1522 |
Beta Was this translation helpful? Give feedback.
-
I have realised that even if I'm excluding In general, I would like to be able to prevent the content of certain files (buffers) from being sent to Codeium. I would like to be able to do this on filename pattern basis. @pqn You mentioned upcoming support for In the meantime, I need a way to do this in neovim. From what I can tell, my LazyVim installation is using vim.api.nvim_create_autocmd("BufRead", {
pattern = { "*.env" },
callback = function()
-- disable the codeium source for blink.cmp here or something along those lines
end,
}) I'd really appreciate some guidance on this. I'm very happy for the guidance to be more general too, i.e. prevention of sensitive information leaking from neovim in the new age of external coding agents. |
Beta Was this translation helpful? Give feedback.
-
There are some places where I want to get input from Codeium and some others where I don't. AI is a wonderful tool but there are places where I want to be with my own thoughts. How could one set a list of file extensions where the plugin to kick in and make it disabled for all the rest. In my project I don't want .env or .secret to be sent to some remote server and stored or analysed.
Beta Was this translation helpful? Give feedback.
All reactions