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