Last active
July 1, 2016 16:50
-
-
Save bitjockey42/05db4694fc936c434d36197e456a970f to your computer and use it in GitHub Desktop.
Installation OS X stuff
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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://[email protected]/0x414A/dotfiles ~/.dotfiles | |
cd ~/.dotfiles | |
stow stow | |
stow spacemacs-common | |
stow spacemacs.osx | |
stow prezto |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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