mirror of
https://github.com/kogakure/dotfiles.git
synced 2026-02-03 20:25:30 +00:00
38 lines
750 B
Bash
Executable File
38 lines
750 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# Install Xcode Developer Tools
|
|
xcode-select --install
|
|
|
|
# Install TMUX Plugin Manager
|
|
git clone https://github.com/tmux-plugins/tpm ~/.tmux/plugins/tpm
|
|
|
|
# Install Homebrew
|
|
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
|
|
|
|
# Installing Homebrew packages, Cask binaries and Mac App Store software
|
|
source ./brew.sh
|
|
|
|
# Installing Node.js
|
|
source ./nvm.sh
|
|
|
|
# Installing global Node.js modules
|
|
source ./npm.sh
|
|
|
|
# Installing Python version manager
|
|
source ./python.sh
|
|
|
|
# Installing Lua packages
|
|
source ./lua.sh
|
|
|
|
# Installing Rust packages
|
|
source ./rust.sh
|
|
|
|
# Install current version of Ruby
|
|
source ./ruby.sh
|
|
|
|
# Install global Gems
|
|
source ./gem.sh
|
|
|
|
# Install Visual Studio Code Extensions
|
|
source ./vscode.sh
|