Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fooest #4

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
34 changes: 26 additions & 8 deletions programmes.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,16 +5,16 @@ echo "Loading programme's specific configurations"
export EDITOR='nvim'

# Pull in rust (cargo) binaries
source "$HOME/.cargo/env"
# source "$HOME/.cargo/env"

# GNU Bison - I don't remember why I need this
export PATH="/opt/homebrew/opt/bison/bin:$PATH"
# export PATH="/opt/homebrew/opt/bison/bin:$PATH"

# A local bin file - I don't remember using this
export PATH="/Users/calebowens/bin:$PATH"
# export PATH="/Users/calebowens/bin:$PATH"

# Load yarn packages in to PATH
export PATH="/Users/calebowens/.yarn/bin:$PATH"
# export PATH="/Users/calebowens/.yarn/bin:$PATH"

# Load sdkman shims
export SDKMAN_DIR="$HOME/.sdkman"
Expand All @@ -35,13 +35,31 @@ export NVM_DIR="$HOME/.nvm"
[ -s "/opt/homebrew/opt/nvm/etc/bash_completion.d/nvm" ] && \. "/opt/homebrew/opt/nvm/etc/bash_completion.d/nvm" # This loads nvm bash_completion

# Direnv
eval "$(direnv hook zsh)"
# eval "$(direnv hook zsh)"

# Added by Toolbox App
export PATH="$PATH:/Users/calebowens/Library/Application Support/JetBrains/Toolbox/scripts"
# export PATH="$PATH:/Users/calebowens/Library/Application Support/JetBrains/Toolbox/scripts"

# Added by OrbStack: command-line tools and integration
source ~/.orbstack/shell/init.zsh 2>/dev/null || :
# source ~/.orbstack/shell/init.zsh 2>/dev/null || :

# Sherman ruby to path
source_sherman_ruby
# source_sherman_ruby

export PATH="/opt/homebrew/opt/[email protected]/bin:$PATH"


# >>> conda initialize >>>
# !! Contents within this block are managed by 'conda init' !!
__conda_setup="$('/opt/homebrew/Caskroom/miniconda/base/bin/conda' 'shell.zsh' 'hook' 2> /dev/null)"
if [ $? -eq 0 ]; then
eval "$__conda_setup"
else
if [ -f "/opt/homebrew/Caskroom/miniconda/base/etc/profile.d/conda.sh" ]; then
. "/opt/homebrew/Caskroom/miniconda/base/etc/profile.d/conda.sh"
else
export PATH="/opt/homebrew/Caskroom/miniconda/base/bin:$PATH"
fi
fi
unset __conda_setup
# <<< conda initialize <<<