Files
nixos-config/modules/home/neovim/plugins/copilot.nix
Christoph Schmatzler 841105b052 up
Signed-off-by: Christoph Schmatzler <christoph@tuist.dev>
2025-11-03 13:10:14 +01:00

16 lines
226 B
Nix

{
programs.nixvim.plugins.copilot-lua = {
enable = true;
settings = {
panel.enabled = false;
suggestion = {
enabled = true;
auto_trigger = true;
keymap = {
accept = "<Tab>";
};
};
};
};
}