mirror of
https://github.com/NotAShelf/nvf.git
synced 2024-11-22 21:30:51 +00:00
lib: change lz.n spec "inlineLua" types to str
This commit is contained in:
parent
c49f0c25c5
commit
a0f4e6a942
1 changed files with 4 additions and 4 deletions
|
@ -138,14 +138,14 @@
|
|||
# lz.n options
|
||||
|
||||
before = mkOption {
|
||||
type = nullOr luaInline;
|
||||
description = "Code to run before plugin is loaded";
|
||||
type = nullOr str;
|
||||
description = "Lua code to run before plugin is loaded. This will be wrapped in a function.";
|
||||
default = null;
|
||||
};
|
||||
|
||||
after = mkOption {
|
||||
type = nullOr luaInline;
|
||||
description = "Code to run after plugin is loaded";
|
||||
type = nullOr str;
|
||||
description = "Lua code to run after plugin is loaded. This will be wrapped in a function.";
|
||||
default = null;
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue