Compare commits
No commits in common. "c228c08ad86420c091b2f5ec5c65cd41c698ea2f" and "867123079e6063f6ee80d91fce7446638cd97e55" have entirely different histories.
c228c08ad8
...
867123079e
@ -8,15 +8,11 @@ git config --global rerere.enabled 1
|
|||||||
git config --global merge.conflictstyle diff3
|
git config --global merge.conflictstyle diff3
|
||||||
|
|
||||||
cat <<EOF >~/.gitignore
|
cat <<EOF >~/.gitignore
|
||||||
### asdf ###
|
# asdf
|
||||||
.tool-versions
|
.tool-versions
|
||||||
### mise ###
|
# direnv
|
||||||
.mise.toml
|
|
||||||
### direnv ###
|
|
||||||
.direnv
|
|
||||||
.envrc
|
.envrc
|
||||||
### python ###
|
.direnv
|
||||||
.venv
|
|
||||||
EOF
|
EOF
|
||||||
|
|
||||||
git config --global core.excludesfile ~/.gitignore
|
git config --global core.excludesfile ~/.gitignore
|
||||||
|
@ -19,17 +19,15 @@ tools+=(vault)
|
|||||||
tools+=(terraform terragrunt)
|
tools+=(terraform terragrunt)
|
||||||
tools+=(ripgrep exa bat dust delta)
|
tools+=(ripgrep exa bat dust delta)
|
||||||
|
|
||||||
for tool in "${tools[@]}"; do
|
for tool in "${tools[@]}"
|
||||||
echo
|
do
|
||||||
echo "-- Installing ${tool}"
|
echo
|
||||||
asdf plugin add ${tool}
|
echo "-- Installing ${tool}"
|
||||||
asdf install ${tool} latest
|
asdf plugin add ${tool}
|
||||||
asdf global ${tool} latest
|
asdf install ${tool} latest
|
||||||
|
asdf global ${tool} latest
|
||||||
done
|
done
|
||||||
|
|
||||||
# Configure asdf/direnv integration
|
|
||||||
asdf direnv setup --shell bash --version latest
|
|
||||||
|
|
||||||
# Install extra plugins and tools
|
# Install extra plugins and tools
|
||||||
|
|
||||||
# lsd
|
# lsd
|
||||||
|
Loading…
Reference in New Issue
Block a user