fixed formating

This commit is contained in:
Moritz Böhme 2021-09-15 00:41:46 +02:00
parent 1acf673ead
commit 52c6b012ca
19 changed files with 142 additions and 134 deletions

View file

@ -2,8 +2,8 @@
{
imports = [
./git.nix
./nix.nix
./zsh.nix
./git.nix
./nix.nix
./zsh.nix
];
}

View file

@ -10,5 +10,5 @@ let
});
in
{
home-manager.users.moritz = {...}: (base "/home/moritz");
home-manager.users.moritz = { ... }: (base "/home/moritz");
}

View file

@ -14,10 +14,10 @@ let
cat = "bat";
};
plugins = [
{
name = "zsh-syntax-highlighting";
src = inputs.zsh-syntax-highlighting;
}
{
name = "zsh-syntax-highlighting";
src = inputs.zsh-syntax-highlighting;
}
];
enableAutosuggestions = true;
enableCompletion = true;
@ -34,5 +34,5 @@ let
in
{
environment.pathsToLink = [ "/share/zsh" ];
home-manager.users.moritz = {...}: (base "/home/moritz");
home-manager.users.moritz = { ... }: (base "/home/moritz");
}