1
0
mirror of https://github.com/bertptrs/vimconfig.git synced 2025-12-25 12:30:32 +01:00

Update aliases

This commit is contained in:
2022-12-16 11:39:31 +01:00
parent bc6e28ec11
commit 00c06d33bf

View File

@@ -69,6 +69,9 @@ AUTO_NOTIFY_IGNORE+=(
"sudoedit" "sudoedit"
"ipython"{,3} "ipython"{,3}
"sem "{attach,debug} "sem "{attach,debug}
"psql"
"sqlite3"
"iotop"
) )
@@ -92,9 +95,10 @@ alias :q='exit'
alias wget="wget --hsts-file=\"$XDG_CACHE_HOME/wget-hsts\"" alias wget="wget --hsts-file=\"$XDG_CACHE_HOME/wget-hsts\""
alias makej="make -j$(nproc)" alias makej="make -j$(nproc)"
alias sdc='sudo docker-compose' alias sdc='sudo docker-compose'
alias nrc='nix run -c' # Used to be nix run -c. That no longer works but my muscle memory does
alias nrc='nix shell --file default.nix -c'
alias gcs='gcloud compute ssh --tunnel-through-iap' alias gcs='gcloud compute ssh --tunnel-through-iap'
alias gscp='gcloud compute scp' alias gscp='gcloud compute scp --tunnel-through-iap'
alias gci='gcloud compute instances' alias gci='gcloud compute instances'
# Not an alias but useful nonetheless. # Not an alias but useful nonetheless.
@@ -291,3 +295,8 @@ if (( $+commands[bat] )); then
# And replace cat while we're at it # And replace cat while we're at it
alias cat='bat' alias cat='bat'
fi fi
# Source Nix if it's installed. Should be done by the WM, but it isn't
if [[ -f /nix/var/nix/profiles/default/etc/profile.d/nix-daemon.sh ]]; then
. /nix/var/nix/profiles/default/etc/profile.d/nix-daemon.sh
fi