this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

back to asdf, for internal tooling compatibility

+4 -7
+1 -1
Brewfile
··· 33 33 # Programming 34 34 brew "tmux" 35 35 brew "tmuxp" 36 - brew "mise" 36 + brew "asdf" 37 37 brew "ansible" 38 38 brew "node" 39 39 brew "oven-sh/bun/bun"
-5
zsh/zshenv
··· 109 109 export PATH="$HOME/.deno/bin:$PATH" 110 110 export PATH="$HOME/.local/bin:$PATH" 111 111 112 - # A mise alias for globally install npm packages, make sure it's always in the path, 113 - # should show up after the mise-added paths, so local version global installs will 114 - # take precedence. 115 - export PATH="$HOME/.local/share/mise/installs/node/globals/bin:$PATH" 116 - 117 112 [ -f "$HOME/.cargo/env" ] && . "$HOME/.cargo/env" 118 113 119 114 [ -f "$HOME/code/zapier/personal-utils.sh" ] && source "$HOME/code/zapier/personal-utils.sh"
+3 -1
zsh/zshrc
··· 6 6 export GPG_TTY=$(tty) 7 7 8 8 #oh-my-zsh 9 - plugins=(git vi-mode fzf direnv mise) 9 + plugins=(git vi-mode fzf direnv asdf) 10 10 ZSH_THEME="robbyrussell" 11 11 source $HOME/.oh-my-zsh/oh-my-zsh.sh 12 12 13 13 # 1password cli plugins 14 14 [ -f "/Users/sethetter/.config/op/plugins.sh" ] && source /Users/sethetter/.config/op/plugins.sh 15 + 16 + export PATH="${ASDF_DATA_DIR:-$HOME/.asdf}/shims:$PATH"