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;