diff --git a/flake.lock b/flake.lock index 9a648ae..f5d941f 100644 --- a/flake.lock +++ b/flake.lock @@ -181,11 +181,11 @@ }, "nixpkgs_2": { "locked": { - "lastModified": 1731676054, - "narHash": "sha256-OZiZ3m8SCMfh3B6bfGC/Bm4x3qc1m2SVEAlkV6iY7Yg=", + "lastModified": 1743095683, + "narHash": "sha256-gWd4urRoLRe8GLVC/3rYRae1h+xfQzt09xOfb0PaHSk=", "owner": "NixOS", "repo": "nixpkgs", - "rev": "5e4fbfb6b3de1aa2872b76d49fafc942626e2add", + "rev": "5e5402ecbcb27af32284d4a62553c019a3a49ea6", "type": "github" }, "original": { diff --git a/nix/neovim-overlay.nix b/nix/neovim-overlay.nix index 062704c..6b89248 100644 --- a/nix/neovim-overlay.nix +++ b/nix/neovim-overlay.nix @@ -96,11 +96,6 @@ with final.pkgs.lib; let fidget-nvim # Color Highlights nvim-highlight-colors - - # Copilot related plugins - CopilotChat-nvim - copilot-cmp - copilot-lua ]; extraPackages = with pkgs; [ @@ -120,9 +115,6 @@ with final.pkgs.lib; let rustfmt # rust formatter prettierd # typescript/javascript formatter # google-java-format # java formatter based off google guidelines - - # misc - nodejs # copilot needs this unfortunately dont remove ]; in { # This is the neovim derivation diff --git a/nvim/plugin/completion.lua b/nvim/plugin/completion.lua index 79792e7..086b589 100644 --- a/nvim/plugin/completion.lua +++ b/nvim/plugin/completion.lua @@ -105,7 +105,6 @@ cmp.setup { -- The insertion order influences the priority of the sources { name = 'nvim_lsp', keyword_length = 3 }, { name = 'nvim_lsp_signature_help', keyword_length = 3 }, - { name = 'copilot' }, { name = 'buffer' }, { name = 'path' }, }, diff --git a/nvim/plugin/copilot.lua b/nvim/plugin/copilot.lua deleted file mode 100644 index c06040f..0000000 --- a/nvim/plugin/copilot.lua +++ /dev/null @@ -1,15 +0,0 @@ --- Copilot related plugins setup --- require('CopilotChat').setup { --- debug = true, --- } - -require('copilot_cmp').setup() - -require('copilot').setup { - suggestion = { enabled = false }, - panel = { enabled = false }, - filetypes = { - -- ['java'] = true, - ['*'] = false, - }, -}