mirror of
https://github.com/jbowdre/dotfiles.git
synced 2024-12-19 03:02:17 +00:00
10 lines
207 B
Nix
10 lines
207 B
Nix
|
{
|
||
|
programs.fish.shellAbbrs = rec {
|
||
|
"-" = "prevd";
|
||
|
dnsplan = "dnscontrol preview";
|
||
|
dnspush = "dnscontrol push";
|
||
|
ga = "git add";
|
||
|
gc = "git commit -S";
|
||
|
gcm = "git commit -S -m";
|
||
|
};
|
||
|
}
|