Skip to content

Instantly share code, notes, and snippets.

@jasonpilz
Last active September 30, 2016 05:08
Show Gist options
  • Save jasonpilz/ee020542be315a6e2ff3cbe39e9b4254 to your computer and use it in GitHub Desktop.
Save jasonpilz/ee020542be315a6e2ff3cbe39e9b4254 to your computer and use it in GitHub Desktop.
Initial computer setup

Initial computer setup (Zsh + RVM)

Unix

My Dotfiles

mkdir ~/code_support
git clone https://github.com/jasonpilz/dotfiles ~/code_support
ln -s ~/code_support/dotfiles/vimrc ~/.vimrc
ln -s ~/code_support/dotfiles/zshrc ~/.zshrc
git clone https://github.com/VundleVim/Vundle.vim.git ~/.vim/bundle/Vundle.vim
vim +PluginInstall +qall

# Fonts
git clone https://github.com/powerline/fonts.git ~/code_support
cd ~/code_support/fonts
bash install.sh
(-> change font settings in iterm preferences->profiles->text->change font)

# Themes
git clone https://github.com/altercation/solarized ~/code_support
git clone https://github.com/mbadolato/iTerm2-Color-Schemes ~/code_support

Homebrew

ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"

The Goods

brew install git ag ack tree

RVM Install

\curl -sSL https://get.rvm.io | bash -s stable

Install and use Ruby version

rvm install 2.3.0
rvm --default use 2.3.0

RubyGems cd into the downloaded rubygems source then:

ruby setup.rb

Zsh

brew install zsh
zsh --version
chsh -s $(which zsh)
echo  $SHELL

Oh My Zsh

sh -c "$(curl -fsSL https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"

brew install zsh-syntax-highlighting
git clone git://github.com/zsh-users/zsh-autosuggestions ~/.zsh/zsh-autosuggestions
brew install nvm
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment