mirror of
https://github.com/NotAShelf/nvf.git
synced 2025-02-24 12:28:32 +00:00
lib: change lz.n spec "inlineLua" types to str
This commit is contained in:
parent
1f077a2bdf
commit
c6a0e80eb2
1 changed files with 4 additions and 4 deletions
|
@ -139,14 +139,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…
Add table
Reference in a new issue