Neovim/NvChad is not recognizing github copilot at all.
Add github/copilot.vim
plugin to plugins list, in ~/.config/nvim/lua/plugins/init.lua
return {
-- ...
{
"github/copilot.vim",
lazy = false,
config = function() -- Mapping tab is already used in NvChad
vim.g.copilot_no_tab_map = true; -- Disable tab mapping
vim.g.copilot_assume_mapped = true; -- Assume that the mapping is already done
end
}
}