From 03c865238b24f4c257e6f17be4dbfba137ce0cb8 Mon Sep 17 00:00:00 2001 From: jasmine Date: Tue, 29 Apr 2025 20:19:49 +0800 Subject: [PATCH] copilot is trash --- config/default.nix | 1 - config/plugins/cmp/copilot.nix | 13 ------------- 2 files changed, 14 deletions(-) delete mode 100644 config/plugins/cmp/copilot.nix diff --git a/config/default.nix b/config/default.nix index 30c43ba..2279709 100644 --- a/config/default.nix +++ b/config/default.nix @@ -9,7 +9,6 @@ # Completion ./plugins/cmp/cmp.nix - ./plugins/cmp/copilot.nix # Editor plugins and configurations ./plugins/editor/autopairs.nix diff --git a/config/plugins/cmp/copilot.nix b/config/plugins/cmp/copilot.nix deleted file mode 100644 index 0ecb16e..0000000 --- a/config/plugins/cmp/copilot.nix +++ /dev/null @@ -1,13 +0,0 @@ -{...}: { - plugins.copilot-vim = { - enable = true; - settings = { - filetypes = { - "*" = false; - }; - workspace_folders = [ - "/home/sajenim/.repositories/dotfiles.nix/" - ]; - }; - }; -}