mirror of
https://github.com/dwinkler1/nvimConfig.git
synced 2026-05-22 20:13:32 -04:00
fix for codecompanion
This commit is contained in:
parent
8811591fe0
commit
4d28d0d490
3 changed files with 16 additions and 15 deletions
|
|
@ -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 = [];
|
||||
};
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue