fix for codecompanion

This commit is contained in:
Daniel Winkler 2026-05-19 13:15:29 +10:00
commit 4d28d0d490
3 changed files with 16 additions and 15 deletions

View file

@ -3,10 +3,9 @@
pkgs,
lib,
...
}:
{
}: {
config.specs.gitPlugins = {
data = [ ];
data = [];
};
config.specs.r = {
@ -112,7 +111,9 @@
nvim-treesitter-context
nvim-treesitter-textobjects
{
data = pkgs.codecompanion-nvim;
data = pkgs.codecompanion-nvim.overrideAttrs (old: {
doCheck = false;
});
pname = "codecompanion";
}
];
@ -176,6 +177,6 @@
config.specs.gitPlugins-lazy = {
lazy = true;
data = [ ];
data = [];
};
}