-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
30 lines (24 loc) · 688 Bytes
/
Makefile
File metadata and controls
30 lines (24 loc) · 688 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
install: install-iterm2 install-rbenv install-vim install-zsh install-ruby install-git
install-iterm2:
brew install --cask iterm2
install-vim:
rm -rf ~/.vim ~/.vimrc
ln -s `pwd`/vim ~/.vim
ln -s ~/.vim/vimrc ~/.vimrc
git clone https://github.com/VundleVim/Vundle.vim.git ~/.vim/bundle/Vundle.vim
vim +PluginInstall +qall
install-zsh:
rm -rf ~/.zshrc
ln -s `pwd`/zshrc ~/.zshrc
install-ruby:
rm -rf ~/.gemrc
ln -s `pwd`/gemrc ~/.gemrc
install-git:
rm -rf ~/.gitconfig
ln -s `pwd`/gitconfig ~/.gitconfig
install-rbenv:
brew install rbenv
install-fonts:
git clone https://github.com/powerline/fonts.git --depth=1 ~/.fonts
sh ~/.fonts/install.sh
cd .. && rm -rf ~/.fonts