add copilot

This commit is contained in:
Charlotte 🦝 Delenk 2022-08-09 20:37:47 +01:00
parent bac915c867
commit 39fc667233
Signed by: darkkirb
GPG key ID: AB2BD8DAF2E37122

View 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 ];
}