Remove job-rs things, make zsh-general-dev file

This commit is contained in:
2025-08-04 09:08:46 +02:00
parent bf7fce65a1
commit 74988a2080
3 changed files with 26 additions and 34 deletions

View File

@@ -0,0 +1,23 @@
# set env vars, path updates, etc
[[ -a $HOME/.local-box-vars ]] \
&& source $HOME/.local-box-vars \
&& . /usr/local/opt/asdf/libexec/asdf.sh
# login shortcuts
alias assume="source assume"
alias login-aws='aws sso login --profile'
alias login-aws-id-list="grep sso_account_id $HOME/.aws/config"
# git stuff
alias gfo='git fetch origin'
alias git-push-to-temp='git branch -D temp; git checkout -b temp; git push origin temp -uf; git checkout -'
alias gpdev='git-push-to-temp'
alias gpo='git pull origin'
# code/test/linter run and build commands
alias bel='bundle exec standardrb'
alias bet='bundle exec rspec'
alias lintjs='npx prettier --write'
alias prl='poetry run black'
alias prt='poetry run pytest'