add copilot
This commit is contained in:
parent
bac915c867
commit
39fc667233
1 changed files with 11 additions and 0 deletions
11
config/programs/vim/modules/languages/copilot.nix
Normal file
11
config/programs/vim/modules/languages/copilot.nix
Normal file
|
@ -0,0 +1,11 @@
|
|||
{ pkgs, ... }:
|
||||
|
||||
{
|
||||
vim.g = {
|
||||
copilot_filetypes = {
|
||||
"*" = true;
|
||||
};
|
||||
copilot_node_command = "${pkgs.nodejs-16_x}/bin/node";
|
||||
};
|
||||
output.plugins = with pkgs.vimPlugins; [ copilot-vim ];
|
||||
}
|
Loading…
Reference in a new issue