mirror of
https://github.com/nix-community/nixvim.git
synced 2025-07-13 10:44:34 +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}
|
||||
EOF
|
||||
'') +
|
||||
config.extraConfigVim + (optionalString (config.extraConfigLuaPre != "" || config.extraConfigLuaPost != "") ''
|
||||
config.extraConfigVim + (optionalString (config.extraConfigLua != "" || config.extraConfigLuaPost != "") ''
|
||||
lua <<EOF
|
||||
${config.extraConfigLua}
|
||||
${config.extraConfigLuaPost}
|
||||
|
@ -127,7 +127,8 @@ in
|
|||
wrapperArgs = lib.escapeShellArgs neovimConfig.wrapperArgs + " " + extraWrapperArgs;
|
||||
inherit (config) wrapRc;
|
||||
});
|
||||
in {
|
||||
in
|
||||
{
|
||||
finalPackage = wrappedNeovim;
|
||||
initContent = neovimConfig.neovimRcContent;
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue