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/" - ]; - }; - }; -}