codeium.vim icon indicating copy to clipboard operation
codeium.vim copied to clipboard

Codeium seems not working !

Open Creator54 opened this issue 2 years ago • 5 comments

Hey guys, I am using Lazy.nvim 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.

image

Please suggest if some more configuration is needed !

Creator54 avatar Jul 09 '23 19:07 Creator54

After installation did you do the :Codeium Auth ?

umschaudhary avatar Jul 11 '23 03:07 umschaudhary

After installation did you do the :Codeium Auth ?

Yes I am authenticated. Codeium or nvim did not report any errors

Creator54 avatar Jul 12 '23 04:07 Creator54

I had the same problem with lunarvim

everdom avatar Jul 26 '23 10:07 everdom

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?

everdom avatar Jul 27 '23 01:07 everdom

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

gitsang avatar Dec 14 '23 12:12 gitsang