nix-config/programs/nixvim/plugins/ai.nix

17 lines
325 B
Nix
Raw Normal View History

{ pkgs, lib, ... }:
2025-10-05 15:47:32 -07:00
{
programs.nixvim = {
plugins = {
# GitHub Copilot
copilot-vim.enable = true;
2025-10-05 15:47:32 -07:00
# Avante AI assistant (imported from separate file)
# avante config is in avante.nix
};
globals = {
copilot_node_command = lib.mkForce "${pkgs.nodejs-slim}/bin/node";
};
2025-10-05 15:47:32 -07:00
};
}