AstroNvim / astrocommunity

A community repository of common plugin specifications
GNU General Public License v3.0
1.04k stars 212 forks source link

feat(completion): add codeium-cmp plugin #1030

Closed khas-amir closed 3 weeks ago

khas-amir commented 3 weeks ago

📑 Description

Add native codeium plugin for neovim

ℹ Additional Information

github-actions[bot] commented 3 weeks ago

Review Checklist

Does this PR follow the [Contribution Guidelines](development guidelines)? Following is a partial checklist:

Proper conventional commit scoping:

khas-amir commented 3 weeks ago

@Uzaaft why ?

Uzaaft commented 3 weeks ago

Nevermind, turns out the plugin doesn't provide virtual_text stuff. What a shame.

Uzaaft commented 3 weeks ago

@khas-amir We'd appreciate it if you next time follow the conventionsin this repository.

Uzaaft commented 3 weeks ago

Removed mapping that didn't make sense at all. Should be good to go now

Uzaaft commented 3 weeks ago

Just tested before I merged this, and seems like the cmp lazy loading isn't working 🫠

Uzaaft commented 3 weeks ago

Should be working now. @khas-amir Can you test before I merge this?

khas-amir commented 3 weeks ago

@Uzaaft everything works on my arch linux

khas-amir commented 3 weeks ago

community.lua


return {
  { "AstroNvim/astrocommunity", dev = true },
  { import = "astrocommunity.colorscheme.catppuccin" },
  { import = "astrocommunity.motion.nvim-surround" },
  { import = "astrocommunity.pack.lua" },
  { import = "astrocommunity.pack.rust" },
  { import = "astrocommunity.pack.typescript" },
  { import = "astrocommunity.pack.tailwindcss" },
  { import = "astrocommunity.completion.codeium-nvim" },
}

``` `