From c3f979ec05ba1cf8963beac551de6c7241c98ecf Mon Sep 17 00:00:00 2001 From: Greg Hellings Date: Thu, 10 Oct 2024 11:28:48 -0500 Subject: [PATCH] Add copilot-vim to the build --- home/modules/baseline/vim/config.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/home/modules/baseline/vim/config.nix b/home/modules/baseline/vim/config.nix index b2eed81..5bf11b2 100644 --- a/home/modules/baseline/vim/config.nix +++ b/home/modules/baseline/vim/config.nix @@ -77,6 +77,7 @@ in sources = [ { name = "nvim_lsp"; } { name = "buffer"; group_index = 2; } + { name = "copilot-vim"; group_index = 2; } { name = "path"; gruop_index = 3; } ]; mapping = { @@ -88,6 +89,10 @@ in }; }; }; + copilot-vim = { + enable = true; + settings.workspace_folders = [ "~/src/ivr" ]; + }; direnv.enable = true; gitgutter.enable = true; fugitive.enable = true;