home-manager/shell/shell_aliases.nix

15 lines
250 B
Nix

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