Compare commits
2 Commits
867123079e
...
c228c08ad8
Author | SHA1 | Date | |
---|---|---|---|
|
c228c08ad8 | ||
|
8694d7f356 |
@ -8,11 +8,15 @@ 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
|
||||||
# direnv
|
### mise ###
|
||||||
.envrc
|
.mise.toml
|
||||||
|
### direnv ###
|
||||||
.direnv
|
.direnv
|
||||||
|
.envrc
|
||||||
|
### python ###
|
||||||
|
.venv
|
||||||
EOF
|
EOF
|
||||||
|
|
||||||
git config --global core.excludesfile ~/.gitignore
|
git config --global core.excludesfile ~/.gitignore
|
||||||
|
@ -19,15 +19,17 @@ tools+=(vault)
|
|||||||
tools+=(terraform terragrunt)
|
tools+=(terraform terragrunt)
|
||||||
tools+=(ripgrep exa bat dust delta)
|
tools+=(ripgrep exa bat dust delta)
|
||||||
|
|
||||||
for tool in "${tools[@]}"
|
for tool in "${tools[@]}"; do
|
||||||
do
|
echo
|
||||||
echo
|
echo "-- Installing ${tool}"
|
||||||
echo "-- Installing ${tool}"
|
asdf plugin add ${tool}
|
||||||
asdf plugin add ${tool}
|
asdf install ${tool} latest
|
||||||
asdf install ${tool} latest
|
asdf global ${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