Skip to content

Instantly share code, notes, and snippets.

@bitjockey42
Last active July 1, 2016 16:50
Show Gist options
  • Save bitjockey42/05db4694fc936c434d36197e456a970f to your computer and use it in GitHub Desktop.
Save bitjockey42/05db4694fc936c434d36197e456a970f to your computer and use it in GitHub Desktop.
Installation OS X stuff
#!/bin/bash
cd ~/Downloads
curl -O https://github.com/argon/mas/releases/download/v1.2.0/mas-cli.zip
unzip mas-cli.zip
./mas install 497799835
./mas install 803453959
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
brew install $(cat brewlist)
brew cask install $(cat casklist)
echo "/usr/local/bin/zsh"|sudo tee -a /etc/shells
git clone https://github.com/syl20bnr/spacemacs ~/.emacs.d
hg clone ssh://hg@bitbucket.org/0x414A/dotfiles ~/.dotfiles
cd ~/.dotfiles
stow stow
stow spacemacs-common
stow spacemacs.osx
stow prezto
#!/usr/local/bin/zsh
git clone --recursive https://github.com/sorin-ionescu/prezto.git "${ZDOTDIR:-$HOME}/.zprezto"
setopt EXTENDED_GLOB
for rcfile in "${ZDOTDIR:-$HOME}"/.zprezto/runcoms/^README.md(.N); do
ln -s "$rcfile" "${ZDOTDIR:-$HOME}/.${rcfile:t}"
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment