ecosse3 / nvim

A non-minimal Neovim config built to work most efficiently with Frontend Development
GNU General Public License v3.0
1.19k stars 110 forks source link

Plugin telescope and neoai not working in v3.5.1 #144

Closed al77ex1 closed 1 year ago

al77ex1 commented 1 year ago

I have this error for telescope plugin in last version:

image

The neoai plugin just doesn't load, so it doesn't work.

image

Plugins worked well in the previous version

ecosse3 commented 1 year ago

I have this error for telescope plugin in last version

What neovim version are you using? The errors indicates that you don't have 0.9.0 up.

The neoai plugin just doesn't load, so it doesn't work.

Make sure to enable it in EcoVim.lua config file. It's disabled by default since not everyone has OpenAI API key.

plugins = {
  ai = {
    chatgpt = {
      enabled = false,  <--- HERE
    },
    codeium = {
      enabled = false,
    },
    copilot = {
      enabled = false,
    },
    tabnine = {
      enabled = false,
    },
  },
{...}
}

Then it will be loaded by one of the commands.

al77ex1 commented 1 year ago

What neovim version are you using? The errors indicates that you don't have 0.9.0 up.

I just installed the latest version from the master branch, ran the command:

git clone https://github.com/ecosse3/nvim.git 

Before this sub, I deleted the nvim folders from ~/.config/ and ~/.local/share/. After the first launch, I have this screen. image

Although the telescope plugin is installed and working image

Make sure to enable it in EcoVim.lua config file. It's disabled by default since not everyone has OpenAI API key.

Sorry - I forgot to enable this option.

ecosse3 commented 1 year ago

You can clearly see that you have Neovim v0.8.0 which is not supported by telescope.nvim anymore. That's why you have this error. I'll bump the minimal required neovim version for Ecovim to 0.9.0. About nil please create a new issue or check on v0.9.0 neovim first.

al77ex1 commented 1 year ago

Thanks for support! The problem was related to nvim version.