home-manager/shell/shell_aliases.nix

14 lines
300 B
Nix

{ ... }:
{
home.shellAliases = {
g = "git";
gg = "git graph --all --max-count 32";
gs = "git status";
gd = "git diff";
gf = "git fetch";
gfg = "git fetch --no-recurse-submodules && git graph --all --max-count 32";
k = "kubectl";
ww = "nvim -c VimwikiIndex";
};
}