Files
dotfiles/setup/init.sh
Stefan Imhoff 1e43546b9a Add asdf as version manager (#2)
* feat(asdf): add new version manager asdf

* feat(asdf): replace nvm with asdf

* feat(asdf): replace rbenv with asdf

* chore: add aliases for git

* feat(asdf): replace pyenv with asdf

* feat(asdf): add asdf as version manager for rust

* chore: shorten comments

* feat(asdf): add asdf as deno version manager

* feat(asdf): add direnv plugin and setup shell

* chore(asdf): move configuration in folder
2022-10-27 19:53:56 +02:00

35 lines
542 B
Bash
Executable File

#!/bin/sh
# Xcode Developer Tools
xcode-select --install
# TMUX Plugin Manager
git clone https://github.com/tmux-plugins/tpm ~/.tmux/plugins/tpm
# Homebrew
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
# Homebrew packages, Cask binaries and Mac App Store software
source ./brew.sh
# Direnv
source ./direnv.sh
# Node.js
source ./nodejs.sh
# Python
source ./python.sh
# Lua
source ./lua.sh
# Rust
source ./rust.sh
# Ruby
source ./ruby.sh
# Visual Studio Code Extensions
source ./vscode.sh