From 430f18b98b678e9b3e745323c5c405344535074c Mon Sep 17 00:00:00 2001 From: Josh Ghent Date: Wed, 26 Apr 2023 09:43:09 +0100 Subject: [PATCH] added act page --- .aliases | 4 ++++ .zshrc | 13 +++++++++++++ programs.sh | 1 + 3 files changed, 18 insertions(+) diff --git a/.aliases b/.aliases index f7381ed..08b247d 100755 --- a/.aliases +++ b/.aliases @@ -19,6 +19,9 @@ alias gpo="git push origin" alias gp="git push" alias ll="ls -la" alias gpx="git add -A && git commit -m \"x\" && git push origin" +alias gco="git checkout" +alias gfo="git fetch origin" +alias grbc="git rebase --continue" # Detect which `ls` flavor is in use if ls --color > /dev/null 2>&1; then # GNU `ls` @@ -99,3 +102,4 @@ setToken() { } alias mfa=setToken alias python=python3 +alias dc="docker compose" diff --git a/.zshrc b/.zshrc index 237e403..9b5ec2e 100755 --- a/.zshrc +++ b/.zshrc @@ -137,3 +137,16 @@ HISTFILE=~/.zsh_history setopt HIST_IGNORE_ALL_DUPS setopt SHARE_HISTORY # share command history data export PATH="/usr/local/sbin:$PATH" + +test -e "${HOME}/.iterm2_shell_integration.zsh" && source "${HOME}/.iterm2_shell_integration.zsh" + +# bun completions +[ -s "/Users/joshghent/.bun/_bun" ] && source "/Users/joshghent/.bun/_bun" + +# bun +export BUN_INSTALL="$HOME/.bun" +export PATH="$BUN_INSTALL/bin:$PATH" + +# bun +export BUN_INSTALL="$HOME/.bun" +export PATH="$BUN_INSTALL/bin:$PATH" diff --git a/programs.sh b/programs.sh index abe8b94..cedaa9c 100755 --- a/programs.sh +++ b/programs.sh @@ -63,6 +63,7 @@ declare -a brews=( "ipfs" "neofetch" "tfenv" + "act" ) # Install brews in a loop