ms-jpq / coq.thirdparty

Module lua sources for `coq.nvim`, first & third party

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

copilot / codium not working.

OneOfOne opened this issue · comments

Hello,
I'm using lazyvim and copilot/codium does not at all and doesn't show in the menus.

here's my config:

	{
		'ms-jpq/coq_nvim',
		branch = 'coq',
		event = 'InsertEnter',
		opt = true,
		config = function()
			local coq = require('coq')
			coq.Now() -- Start coq

			-- 3party sources
			require('coq_3p')({
				{ src = 'copilot', short_name = 'COP', accept_key = '<c-f>' },
				{ src = 'codeium', short_name = 'COD' },
				{src='demo'} -- to test if it works, and it does
			})
		end,
		dependencies = {
			{ 'ms-jpq/coq.artifacts', branch = 'artifacts' },
			{ 'ms-jpq/coq.thirdparty', branch = '3p', module = 'coq_3p' },
		},
	},