style: Run formatter
This commit is contained in:
parent
15d6b0caff
commit
743ddd0b8f
2 changed files with 5 additions and 5 deletions
|
@ -207,8 +207,8 @@ with lib;
|
||||||
+ lib.optionalString isCustomAppName ''
|
+ lib.optionalString isCustomAppName ''
|
||||||
mv $out/bin/nvim $out/bin/${lib.escapeShellArg appName}
|
mv $out/bin/nvim $out/bin/${lib.escapeShellArg appName}
|
||||||
'';
|
'';
|
||||||
meta.mainProgram
|
meta.mainProgram =
|
||||||
= if isCustomAppName
|
if isCustomAppName
|
||||||
then appName
|
then appName
|
||||||
else oa.meta.mainProgram;
|
else oa.meta.mainProgram;
|
||||||
})
|
})
|
||||||
|
|
|
@ -15,7 +15,7 @@ with final.pkgs.lib; let
|
||||||
pkgs-wrapNeovim = inputs.nixpkgs.legacyPackages.${pkgs.system};
|
pkgs-wrapNeovim = inputs.nixpkgs.legacyPackages.${pkgs.system};
|
||||||
|
|
||||||
# This is the helper function that builds the Neovim derivation.
|
# This is the helper function that builds the Neovim derivation.
|
||||||
mkNeovim = pkgs.callPackage ./mkNeovim.nix { inherit pkgs-wrapNeovim; };
|
mkNeovim = pkgs.callPackage ./mkNeovim.nix {inherit pkgs-wrapNeovim;};
|
||||||
|
|
||||||
# A plugin can either be a package or an attrset, such as
|
# A plugin can either be a package or an attrset, such as
|
||||||
# { plugin = <plugin>; # the package, e.g. pkgs.vimPlugins.nvim-cmp
|
# { plugin = <plugin>; # the package, e.g. pkgs.vimPlugins.nvim-cmp
|
||||||
|
|
Loading…
Reference in a new issue