misc: remove trailing whitespaces

This commit is contained in:
Gaetan Lepage 2023-01-13 14:48:51 +01:00
parent b9a4f0ca19
commit e05014fb00
10 changed files with 19 additions and 19 deletions

View file

@ -73,21 +73,21 @@ in {
package = mkOption {
type = types.nullOr types.package;
default = null;
example =
example =
"package = pkgs.fetchFromGitHub {
owner = \"WhiteBlackGoose\";
repo = \"magma-nvim-goose\";
rev = version;
sha256 = \"sha256-IaslJK1F2BxTvZzKGH9OKOl2RICi4d4rSgjliAIAqK4=\";} ";
};
};
};
config = mkIf cfg.enable {
extraPlugins = [ (
if cfg.package != null then plugins.magma-nvim.override {src = cfg.package;} else plugins.magma-nvim
extraPlugins = [ (
if cfg.package != null then plugins.magma-nvim.override {src = cfg.package;} else plugins.magma-nvim
)];