Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

debian + nvim + lazy + codeium = don't work visible suggestion #207

Open
PerynFr opened this issue Jul 14, 2024 · 4 comments
Open

debian + nvim + lazy + codeium = don't work visible suggestion #207

PerynFr opened this issue Jul 14, 2024 · 4 comments

Comments

@PerynFr
Copy link

PerynFr commented Jul 14, 2024

I'm add to init.lua :

-- codeium
{
  "Exafunction/codeium.nvim",
  dependencies = {
      "nvim-lua/plenary.nvim",
      "hrsh7th/nvim-cmp",
  },
  config = function()
      require("codeium").setup({
        enable_chat = true
      })
  end
},

In this case, authorization was successful and the chat opens using the command > :Codeium Chat

@aliaksandr-trush
Copy link
Contributor

https://github.com/Exafunction/codeium.nvim?tab=readme-ov-file#nvim-cmp

@PerynFr
Copy link
Author

PerynFr commented Jul 19, 2024

I deleted all other plugins, leaving only this one, but that didn’t help either, most likely it was all tested only on Mac

@fadedreams

This comment was marked as resolved.

@SoaresAlisson
Copy link

I was facing a similar problem, using manjaro + nvim + lazy + codeium. I recently migrated to lazyvim, and codeium worked pretty straightforward in nvim with init.vim, but not with Lazyvim. So, I followed the instructions of @aliaksandr-trush.
I added codeium to my init.lua and now it looks like:

local cmp = require("cmp")
sources =
  cmp.config.sources({ { name = path }, { name = "snippets" }, { name = "cmp_r" }, { name = "codeium" } }), cmp.setup({
-- more code 

The codeium suggestions in lazyvim pop ups differently than in nvim with plug.
Now appears a window of many codeium options, sometimes together with code snippets.

Thank you, @aliaksandr-trush !

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

4 participants