1
0
Fork 0
mirror of https://github.com/SeriousBug/dotfiles synced 2024-11-01 03:27:26 -05:00
dotfiles/scripts/asdf.install.sh

62 lines
1.5 KiB
Bash
Raw Normal View History

2024-09-18 23:56:58 -05:00
#!/usr/bin/env bash
# Install
git clone https://github.com/asdf-vm/asdf.git ~/.asdf --branch v0.14.1
# Setup bash
echo '. "$HOME/.asdf/asdf.sh"' >> ~/.bashrc
echo '. "$HOME/.asdf/completions/asdf.bash"' >> ~/.bashrc
# Setup fish
mkdir -p ~/.config/fish
echo 'set --export ASDF_DIR $HOME/.asdf'
2024-09-18 23:56:58 -05:00
echo 'source ~/.asdf/asdf.fish' >> ~/.config/fish/config.fish
mkdir -p ~/.config/fish/completions
ln -s ~/.asdf/completions/asdf.fish ~/.config/fish/completions
# Setup zsh
echo '. "$HOME/.asdf/asdf.sh"' >> ~/.zshrc
echo 'fpath=(${ASDF_DIR}/completions $fpath)' >> ~/.zshrc
echo 'autoload -Uz compinit && compinit' >> ~/.zshrc
# Activate asdf
. "$HOME/.asdf/asdf.sh"
# Install and activate asdf plugins
PLUGINS=(
2024-09-19 00:11:59 -05:00
"air"
2024-09-18 23:56:58 -05:00
"bat"
"bottom"
"bun"
"delta"
"dust"
"eza"
"fd"
"golang"
"jq"
"lazygit"
"neovim"
"nodejs"
"pnpm"
2024-09-19 00:23:29 -05:00
"ripgrep"
2024-09-18 23:56:58 -05:00
"xh"
)
for PLUGIN in "${PLUGINS[@]}"; do
asdf plugin add "$PLUGIN"
asdf install "$PLUGIN" latest
asdf global "$PLUGIN" latest
done
#git clone --depth=1 https://github.com/mattmc3/antidote.git ${ZDOTDIR:-~}/.antidote
# If Go is already installed on the system (e.g. Codespaces), the built-in
# install interferes with the asdf install.
unset GOPATH
unset GOROOT
echo "export GOPATH=$(go env GOPATH)" >> ~/.bashrc
echo "export GOROOT=$(go env GOROOT)" >> ~/.bashrc
echo "export GOPATH=$(go env GOPATH)" >> ~/.zshrc
echo "export GOROOT=$(go env GOROOT)" >> ~/.zshrc
echo "set --export GOPATH (go env GOPATH)" >> ~/.config/fish/config.fish
echo "set --export GOROOT (go env GOROOT)" >> ~/.config/fish/config.fish