diff --git a/config/plugins/cmp/copilot.nix b/config/plugins/cmp/copilot.nix index f11ac1d..e00fd5a 100644 --- a/config/plugins/cmp/copilot.nix +++ b/config/plugins/cmp/copilot.nix @@ -1,5 +1,14 @@ {...}: { plugins.copilot-vim = { enable = true; + settings = { + filetypes = { + "*" = false; + "nix" = true; + }; + workspace_folders = [ + "/home/sajenim/.repositories/dotfiles.nix/" + ]; + }; }; }