Completely removed copilot from nixvim configuration

This commit is contained in:
Ceferino Patino 2025-01-30 18:20:47 -06:00
commit 3f6ab83cc6
Signed by: c4patino
SSH key fingerprint: SHA256:Wu+cU1t+7zVT9wzew/4meNmeulo66NzMqc22MdDBgXI
4 changed files with 0 additions and 25 deletions

View file

@ -6,7 +6,6 @@
settings = {
sources = [
{name = "copilot";}
{name = "nvim_lsp";}
{name = "buffer";}
{name = "path";}

View file

@ -1,20 +0,0 @@
{
plugins.copilot-lua = {
enable = true;
panel.enabled = false;
suggestion.enabled = false;
filetypes = {
yaml = false;
markdown = false;
help = false;
gitcommit = false;
gitrebase = false;
hgcommit = false;
svn = false;
cvs = false;
"." = false;
};
};
}

View file

@ -2,7 +2,6 @@
imports = [
./cmp.nix
./conform.nix
./copilot.nix
./dap.nix
./lsp.nix
./lspkind.nix

View file

@ -1,9 +1,6 @@
{
plugins.lspkind = {
enable = true;
symbolMap = {
Copilot = "";
};
extraOptions = {
maxwidth = 50;
ellipsis_char = "...";