Change "g" alias to use lazygit

This commit is contained in:
Julian Mutter 2024-07-05 09:37:32 +02:00
parent fa093e644e
commit 80bdd2314a

View File

@ -36,10 +36,13 @@ in
".config/fish/conf.d/last-working-dir.fish".source = ./last-working-dir.fish;
};
home.packages = with pkgs; [ starship ];
home.packages = with pkgs; [
starship
lazygit
];
home.shellAliases = {
g = "git status";
g = "lazygit";
ls = "ls --color";
la = "ls -Alh --color";
grep = "grep --color";