mirror of
https://github.com/NotAShelf/nvf.git
synced 2026-01-02 09:05:55 +00:00
15 lines
246 B
Nix
15 lines
246 B
Nix
{
|
|
# TODO: give those section indicators
|
|
# maybe using mkSection?
|
|
wrapLuaConfig = {
|
|
luaConfigBefore,
|
|
luaConfig,
|
|
luaConfigAfter,
|
|
}: ''
|
|
lua << EOF
|
|
${luaConfigBefore}
|
|
${luaConfig}
|
|
${luaConfigAfter}
|
|
EOF
|
|
'';
|
|
}
|