zsh,nix-shell: add 'go run' alias

This commit is contained in:
surtur 2022-05-14 19:04:30 +02:00
parent b463fd5a20
commit 5afcc28c80
Signed by: wanderer
GPG Key ID: 19CE1EC1D9E0486D

View File

@ -34,3 +34,6 @@
alias ip='ip -color'
alias nmcs='nmcli conn show'
alias subvols='sudo btrfs subvolume list /home | grep -v -e ".snapshots" -e "${USER}/.local/share/containers" -e "${USER}/.docker" | grep ${USER}'
[ -z "$IN_NIX_SHELL" ] && {
alias gor='nixGLIntel go run'
}