codeium.vim
codeium.vim copied to clipboard
Codeium seems not working !
Hey guys, I am using with Neovim v0.8.1.
I currently have installed codeium.vim using Lazy.nvim like this
{
"Exafunction/codeium.vim",
config = function()
vim.g.codeium_enabled = true -- Enable Codeium by default
vim.g.codeium_idle_delay = 500 -- Set the idle delay (in milliseconds)
end,
},
But I am unable to see any suggestion as described in the introduction videos of codeium installation in neovim. I am authenticated and did not get any errors reported via codeium or Lazy till now.
Please suggest if some more configuration is needed !
After installation did you do the :Codeium Auth ?
After installation did you do the
:Codeium Auth?
Yes I am authenticated. Codeium or nvim did not report any errors
I had the same problem with lunarvim
I found that it was caused by proxy. When I set up the HTTP agent using export http_prpxy=http://127.0.0.1:1080, codeium does not work anymore, why?
I found that it was caused by proxy. When I set up the HTTP agent using
export http_prpxy=http://127.0.0.1:1080, codeium does not work anymore, why?
It seems that Codeium will also send localhost requests through the proxy server. export NO_PROXY="localhost,127.0.0.1" may solve the issues caused by the proxy.
https://github.com/Exafunction/codeium.vim/issues/195