mirror of
https://github.com/NotAShelf/neovim-flake.git
synced 2024-11-09 14:45:58 +01:00
lz.n: wrap lua code in function
This commit is contained in:
parent
fc58c85524
commit
e086dc02fe
1 changed files with 9 additions and 0 deletions
|
@ -31,6 +31,15 @@
|
|||
(removeAttrs spec ["package" "setupModule" "setupOpts" "keys"])
|
||||
// {
|
||||
"@1" = name;
|
||||
before =
|
||||
if spec.before != null
|
||||
then
|
||||
mkLuaInline ''
|
||||
function()
|
||||
${spec.before}
|
||||
end
|
||||
''
|
||||
else null;
|
||||
after = mkLuaInline ''
|
||||
function()
|
||||
${
|
||||
|
|
Loading…
Reference in a new issue