chore(copilot): remove copilot

This commit is contained in:
Jiří Štefka 2024-09-18 21:55:56 +02:00
parent 51e7717d88
commit 4adeabe1b8
Signed by: jiriks74
GPG Key ID: 1D5E30D3DB2264DE
4 changed files with 4 additions and 4 deletions

@ -44,8 +44,8 @@ with final.pkgs.lib; let
cmp-nvim-lua # neovim lua API as completion source | https://github.com/hrsh7th/cmp-nvim-lua/ cmp-nvim-lua # neovim lua API as completion source | https://github.com/hrsh7th/cmp-nvim-lua/
cmp-cmdline # cmp command line suggestions cmp-cmdline # cmp command line suggestions
cmp-cmdline-history # cmp command line history suggestions cmp-cmdline-history # cmp command line history suggestions
copilot-lua # Github Copilot https://github.com/zbirenbaum/copilot.lua/ # copilot-lua # Github Copilot https://github.com/zbirenbaum/copilot.lua/
copilot-cmp # Add Copilot as a cmp source # https://github.com/zbirenbaum/copilot-cmp/ # copilot-cmp # Add Copilot as a cmp source # https://github.com/zbirenbaum/copilot-cmp/
# nvim-lspconfig # nvim-lspconfig
# ^ nvim-cmp extensions # ^ nvim-cmp extensions

@ -103,7 +103,7 @@ cmp.setup {
}, },
sources = cmp.config.sources { sources = cmp.config.sources {
-- The insertion order influences the priority of the sources -- The insertion order influences the priority of the sources
{ name = "copilot", group_index = 2 }, -- { name = "copilot", group_index = 2 },
{ name = 'nvim_lsp', keyword_length = 3 }, { name = 'nvim_lsp', keyword_length = 3 },
{ name = 'nvim_lsp_signature_help', keyword_length = 3 }, { name = 'nvim_lsp_signature_help', keyword_length = 3 },
{ name = 'buffer' }, { name = 'buffer' },

@ -7,7 +7,7 @@ vim.g.did_load_plugins_plugin = true
-- even with default configs -- even with default configs
require("dapui").setup() require("dapui").setup()
require("copilot_cmp").setup() -- require("copilot_cmp").setup()
require('nvim-surround').setup() require('nvim-surround').setup()
require('which-key').setup() require('which-key').setup()
require('Comment').setup() require('Comment').setup()