Exafunction / codeium.vim

Free, ultrafast Copilot alternative for Vim and Neovim
https://codeium.com
MIT License
3.72k stars 127 forks source link

Codeium seems not working ! #182

Open Creator54 opened 12 months ago

Creator54 commented 12 months ago

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 !

umschaudhary commented 11 months ago

After installation did you do the :Codeium Auth ?

Creator54 commented 11 months ago

After installation did you do the :Codeium Auth ?

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

everdom commented 11 months ago

I had the same problem with lunarvim

everdom commented 11 months ago

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?

gitsang commented 6 months ago

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