dotfiles/home/modules/tui/shell/fish/abbrs.nix

11 lines
226 B
Nix
Raw Normal View History

{
programs.fish.shellAbbrs = rec {
"-" = "prevd";
2024-12-05 22:43:20 +00:00
":q" = "exit";
dnsplan = "dnscontrol preview";
dnspush = "dnscontrol push";
ga = "git add";
gc = "git commit -S";
gcm = "git commit -S -m";
};
}