mirror of
https://github.com/nix-community/nixvim.git
synced 2025-07-13 18:54:30 +02:00
fix output module
This commit is contained in:
parent
928e7f2673
commit
e8ab365a4a
1 changed files with 3 additions and 2 deletions
|
@ -93,7 +93,7 @@ in
|
||||||
${config.extraConfigLuaPre}
|
${config.extraConfigLuaPre}
|
||||||
EOF
|
EOF
|
||||||
'') +
|
'') +
|
||||||
config.extraConfigVim + (optionalString (config.extraConfigLuaPre != "" || config.extraConfigLuaPost != "") ''
|
config.extraConfigVim + (optionalString (config.extraConfigLua != "" || config.extraConfigLuaPost != "") ''
|
||||||
lua <<EOF
|
lua <<EOF
|
||||||
${config.extraConfigLua}
|
${config.extraConfigLua}
|
||||||
${config.extraConfigLuaPost}
|
${config.extraConfigLuaPost}
|
||||||
|
@ -127,7 +127,8 @@ in
|
||||||
wrapperArgs = lib.escapeShellArgs neovimConfig.wrapperArgs + " " + extraWrapperArgs;
|
wrapperArgs = lib.escapeShellArgs neovimConfig.wrapperArgs + " " + extraWrapperArgs;
|
||||||
inherit (config) wrapRc;
|
inherit (config) wrapRc;
|
||||||
});
|
});
|
||||||
in {
|
in
|
||||||
|
{
|
||||||
finalPackage = wrappedNeovim;
|
finalPackage = wrappedNeovim;
|
||||||
initContent = neovimConfig.neovimRcContent;
|
initContent = neovimConfig.neovimRcContent;
|
||||||
};
|
};
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue