style: Run formatter

This commit is contained in:
punkfairie 2024-11-28 11:11:51 -08:00
parent 15d6b0caff
commit 743ddd0b8f
Signed by: punkfairie
GPG key ID: A509E8F77FB9D696
2 changed files with 5 additions and 5 deletions

View file

@ -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;
}) })

View file

@ -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