Last active
December 11, 2018 07:36
-
-
Save nelsonsequiera/2160d04db6a3f6f337fca98dcb42e54d to your computer and use it in GitHub Desktop.
mac setup
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
''' | |
Mac store apps: | |
Termius | |
copyclip | |
bandwidth+ | |
lastpass | |
External Apps: | |
CheatSheet | |
rescuetime | |
iterm2 | |
sublime3 | |
docker | |
vs code | |
vlc | |
postman | |
dbeaver | |
''' | |
# generate ssh key | |
ssh-keygen -t rsa | |
# install homwbrew | |
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" | |
# install zsh | |
brew install zsh | |
# set zsh as default | |
chsh -s /bin/zsh | |
# sh -c "$(curl -fsSL https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh)" | |
# source ~/.zshrc | |
# curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py | |
# python get-pip.py | |
# pip install pygments --user | |
# git clone https://github.com/zsh-users/zsh-autosuggestions ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autosuggestions | |
# git clone https://github.com/zsh-users/zsh-syntax-highlighting.git ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-syntax-highlighting | |
# curl https://github.com/mbadolato/iTerm2-Color-Schemes/zipball/master ~/iterm-color-schemes | |
https://github.com/mbadolato/iTerm2-Color-Schemes/zipball/master | |
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 | |
git clone [email protected]:nelsonsequiera/mac-dot-files.git | |
cp mac-dot-files/.zprezto/runcoms/* ~/.zprezto/runcoms/ | |
git clone https://github.com/powerline/fonts.git --depth=1 | |
cd fonts | |
./install.sh | |
cd .. | |
rm -rf fonts | |
git clone https://github.com/zsh-users/zsh-autosuggestions ~/.zsh/zsh-autosuggestions |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment