Skip to content

Commit

Permalink
Update bash_profile
Browse files Browse the repository at this point in the history
  • Loading branch information
vcastellm authored Dec 4, 2024
1 parent 12b1780 commit 25f8e3c
Showing 1 changed file with 0 additions and 27 deletions.
27 changes: 0 additions & 27 deletions bash_profile
Original file line number Diff line number Diff line change
Expand Up @@ -36,45 +36,18 @@ fi
if [ -f "$HOME/.auth" ]; then
source $HOME/.auth
fi
export TF_VAR_github_api_token=$VAULT_GITHUB_API_TOKEN

if [ -d "$HOME/.rbenv" ]; then
export PATH="$HOME/.rbenv/bin:$PATH"
eval "$(rbenv init -)"
fi

if [ -e "/usr/local/bin/direnv" ]; then
eval "$(direnv hook bash)"
fi

# SSH_AUTH_SOCK is autoexported in the previous eval (if enable-ssh-support option is present)
export GPG_AGENT_INFO=${HOME}/.gnupg/S.gpg-agent:66568:1
export GPG_TTY=$(tty)

if [ -d "/Applications/Visual Studio Code.app" ]; then
export PATH="$PATH:/Applications/Visual Studio Code.app/Contents/Resources/app/bin"
fi

alias yaegi='rlwrap yaegi'
alias flamegraph='~/src/github.com/brendangregg/FlameGraph/flamegraph.pl'

eval "$(/opt/homebrew/bin/brew shellenv)"
. "$HOME/.cargo/env"

#AWSume alias to source the AWSume script
alias awsume="source awsume"

#Auto-Complete function for AWSume
_awsume() {
local cur prev opts
COMPREPLY=()
cur="${COMP_WORDS[COMP_CWORD]}"
prev="${COMP_WORDS[COMP_CWORD-1]}"
opts=$(awsume-autocomplete)
COMPREPLY=( $(compgen -W "${opts}" -- ${cur}) )
return 0
}
complete -F _awsume awsume

export PATH="$PATH:/Users/vcastellm/.foundry/bin"

0 comments on commit 25f8e3c

Please sign in to comment.