Exafunction / codeium.vim

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

How to disable for codeium for certain filetypes? #88

Closed JoePython1 closed 1 year ago

JoePython1 commented 1 year ago

Is there a equivalent code for neovim?

The examples only mention for vimrc

let g:codeium_filetypes = {
    \ "bash": v:false,
    \ "typescript": v:true,
    \ }
luismeyer95 commented 1 year ago

Hi, the following should work in lua:

vim.g.codeium_filetypes = {
  bash = false,
  typescript = true,
}