mirror of
https://github.com/kogakure/dotfiles.git
synced 2026-02-03 20:25:30 +00:00
23 lines
351 B
Bash
23 lines
351 B
Bash
#!/bin/sh
|
|
|
|
# Installing Homebrew packages
|
|
source ./brew.sh
|
|
|
|
# Installing Homebrew Cask packages
|
|
source ./cask.sh
|
|
|
|
# Installing Node.js
|
|
source ./nvm.sh
|
|
|
|
# Installing global Node.js modules
|
|
source ./npm.sh
|
|
|
|
# Installing Python version manager
|
|
source ./python.sh
|
|
|
|
# Install current version of Ruby
|
|
source ./ruby.sh
|
|
|
|
# Install global Gems
|
|
source ./gem.sh
|