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

Loading…
Cancel
Save