mirror of
https://github.com/NotAShelf/nvf.git
synced 2025-09-05 18:01:32 +00:00
Merge dcde353651
into f5c91f6a66
This commit is contained in:
commit
8119a8018f
2 changed files with 11 additions and 0 deletions
|
@ -499,3 +499,7 @@
|
|||
|
||||
- Add [nvim-highlight-colors] plugin in `vim.ui.nvim-highlight-colors` with
|
||||
`enable` and `setupOpts`
|
||||
|
||||
[midischwarz12](https://github.com/midischwarz12):
|
||||
|
||||
- Add extension support for [codecompanion-nvim].
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
inherit (lib.options) mkOption mkEnableOption;
|
||||
inherit (lib.types) int str enum nullOr attrs;
|
||||
inherit (lib.nvim.types) mkPluginSetupOption luaInline;
|
||||
inherit (lib.generators) mkLuaInline;
|
||||
in {
|
||||
options.vim.assistant = {
|
||||
codecompanion-nvim = {
|
||||
|
@ -295,6 +296,12 @@ in {
|
|||
that can be used in the action palette.
|
||||
'';
|
||||
};
|
||||
|
||||
extensions = mkOption {
|
||||
type = luaInline;
|
||||
default = mkLuaInline "{}";
|
||||
description = "Extensions for codecompanion";
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue