From feb76796379feb34bea75f90aff832aea0b7cb73 Mon Sep 17 00:00:00 2001 From: jasmine Date: Sun, 23 Mar 2025 18:41:22 +0800 Subject: [PATCH] update copilot plugin --- config/plugins/cmp/copilot.nix | 9 +++++++++ 1 file changed, 9 insertions(+) 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/" + ]; + }; }; }