gh0stzk / dotfiles

BSPWM environment with 18 themes. With a theme selector to change on the fly.
GNU General Public License v3.0
3.03k stars 228 forks source link

How do I add github copilot to the neovim of this setup? #208

Closed chrollorifat closed 8 months ago

AzhamProdLive commented 8 months ago

You should check out this guide over here, if you want to add Copilot to Neovim : https://github.com/github/copilot.vim

gh0stzk commented 8 months ago

You need to create a new file called copilot.lua under ~/.config/nvim/lua/plugins

Then your new copilot.lua file must be like:

return {
      "github/copilot.vim",
}

Thats it. Then open neovim again and write :Copilot setup and follow the instructions to add your account.

chrollorifat commented 8 months ago

Thanks a lot. it was so easy.