mirror of
https://github.com/nix-community/nixvim.git
synced 2025-11-17 07:52:47 +01:00
30 lines
490 B
Nix
30 lines
490 B
Nix
{ lib, ... }:
|
|
lib.nixvim.plugins.mkNeovimPlugin {
|
|
name = "aider";
|
|
package = "aider-nvim";
|
|
|
|
maintainers = with lib.maintainers; [
|
|
c4patino
|
|
];
|
|
|
|
settingsExample = {
|
|
auto_manage_context = false;
|
|
default_bindings = false;
|
|
debug = true;
|
|
vim = true;
|
|
ignore_buffers = [ ];
|
|
border = {
|
|
style = [
|
|
"╭"
|
|
"─"
|
|
"╮"
|
|
"│"
|
|
"╯"
|
|
"─"
|
|
"╰"
|
|
"│"
|
|
];
|
|
color = "#fab387";
|
|
};
|
|
};
|
|
}
|