Fun with go, node, and brew

main
Dan Buch 2 years ago
parent 26833f2fa9
commit 080f32ea0c
Signed by: meatballhat
GPG Key ID: A12F782281063434

10
zshrc

@ -41,6 +41,7 @@ path=(
$HOME/.pyenv/bin
$HOME/.yarn/bin
$HOME/.pulumi/bin
${KREW_ROOT:-$HOME/.krew}/bin
$HOME/.local/bin
$HOME/perl5/bin
$HOME/Library/Python/3.8/bin
@ -61,6 +62,7 @@ path=(
plugins=(
archlinux
aws
brew
bundler
command-not-found
cp
@ -97,6 +99,10 @@ plugins=(
yarn
)
if [[ -x /home/linuxbrew/.linuxbrew/bin/brew ]]; then
eval "$(/home/linuxbrew/.linuxbrew/bin/brew shellenv)"
fi
if [[ -d ~/.oh-my-zsh/plugins/just/ ]]; then
plugins+=just
fi
@ -158,7 +164,7 @@ if [[ -f ~/.cargo/env ]]; then
fi
if gimme --version &>/dev/null; then
eval "$(gimme '1.17.5')" 2>/dev/null
eval "$(gimme '1.18.x')" 2>/dev/null
export GOPATH="$HOME/go"
fi
@ -248,7 +254,7 @@ if [[ -d /usr/local/opt/python@3.8/lib/pkgconfig ]]; then
fi
if nvm &>/dev/null; then
nvm use --delete-prefix lts/erbium --silent
nvm use --delete-prefix 16 --silent
fi
if kitty --version &>/dev/null; then

Loading…
Cancel
Save