1
0
Fork 0
mirror of https://github.com/nix-community/nixvim.git synced 2025-12-10 02:51:07 +01:00

plugins/aider: init

This commit is contained in:
C4 Patino 2025-08-25 11:48:50 -05:00 committed by Matt Sturgeon
parent f5026663f6
commit 63496f00c6
2 changed files with 80 additions and 0 deletions

View file

@ -0,0 +1,31 @@
{ lib, ... }:
lib.nixvim.plugins.mkNeovimPlugin {
name = "aider";
package = "aider-nvim";
packPathName = "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";
};
};
}