mirror of
https://github.com/jbowdre/dotfiles.git
synced 2024-12-19 03:02:17 +00:00
20 lines
No EOL
521 B
Nix
20 lines
No EOL
521 B
Nix
{
|
|
programs.fish.shellAbbrs = rec {
|
|
ccat = "egrep -v '^\s*(#|\\$)'";
|
|
dnsplan = "dnscontrol preview";
|
|
dnspush = "dnscontrol push";
|
|
g = "git";
|
|
ga = "git add";
|
|
gc = "git commit -S"; # interactive commit
|
|
gcm = "git commit -S -m"; # quick commit
|
|
gg = "git graph";
|
|
gs = "git status";
|
|
jqless = "jq -C | less -r";
|
|
n = "nix";
|
|
sshpass = "ssh -o PubkeyAuthentication=no";
|
|
tf = "terraform";
|
|
tfyolo = "terraform apply -auto-approve";
|
|
v = "vim";
|
|
vi = "vim";
|
|
};
|
|
} |