mirror of
https://github.com/NotAShelf/nvf.git
synced 2025-09-06 02:11:33 +00:00
assistant/supermaven-nvim: fix usage of luaInline type
😭
This commit is contained in:
parent
e02b61dc4c
commit
e78d4bb3c9
1 changed files with 2 additions and 2 deletions
|
@ -9,7 +9,7 @@
|
|||
enum
|
||||
;
|
||||
inherit (lib.options) mkOption mkEnableOption;
|
||||
inherit (lib.nvim.types) mkPluginSetupOption;
|
||||
inherit (lib.nvim.types) mkPluginSetupOption luaInline;
|
||||
in {
|
||||
options.vim.assistant.supermaven-nvim = {
|
||||
enable = mkEnableOption "Supermaven AI assistant";
|
||||
|
@ -81,7 +81,7 @@ in {
|
|||
description = "Disable built-in keymaps for more manual control";
|
||||
};
|
||||
condition = mkOption {
|
||||
type = nullOr lib.nvim.luaInline;
|
||||
type = nullOr luaInline;
|
||||
default = null;
|
||||
description = ''
|
||||
Condition function to check for stopping supermaven.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue