nixos-config/config/programs/vim/modules/languages/copilot.nix

10 lines
200 B
Nix
Raw Normal View History

2022-08-10 08:20:23 +00:00
{pkgs, ...}: {
2022-08-09 19:37:47 +00:00
vim.g = {
copilot_filetypes = {
"*" = true;
};
copilot_node_command = "${pkgs.nodejs-16_x}/bin/node";
};
2022-08-10 08:20:23 +00:00
output.plugins = with pkgs.vimPlugins; [copilot-vim];
2022-08-09 19:37:47 +00:00
}