nixvim-config/plugins/copilot.nix

15 lines
193 B
Nix
Raw Permalink Normal View History

{ ... }:
{
programs.nixvim = {
plugins.copilot-lua = {
enable = true;
settings = {
suggestion.enabled = false;
panel.enabled = false;
};
};
};
}