Skip to content

Commit

Permalink
added act page
Browse files Browse the repository at this point in the history
  • Loading branch information
Josh Ghent committed Apr 26, 2023
1 parent 631edb5 commit 430f18b
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .aliases
Expand Up @@ -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`
Expand Down Expand Up @@ -99,3 +102,4 @@ setToken() {
}
alias mfa=setToken
alias python=python3
alias dc="docker compose"
13 changes: 13 additions & 0 deletions .zshrc
Expand Up @@ -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"
1 change: 1 addition & 0 deletions programs.sh
Expand Up @@ -63,6 +63,7 @@ declare -a brews=(
"ipfs"
"neofetch"
"tfenv"
"act"
)

# Install brews in a loop
Expand Down

0 comments on commit 430f18b

Please sign in to comment.