Skip to content

Latest commit

 

History

History
25 lines (17 loc) · 518 Bytes

README.md

File metadata and controls

25 lines (17 loc) · 518 Bytes

Vim Config

Installation

# install vim via homebrew
brew install vim

# install nerd font and set it as a default font for iTerm2
brew tap homebrew/cask-fonts
brew install --cask font-hack-nerd-font

# say goodbye to your old .vim
mv ~/.vim ~/.vim.bak
mv ~/.vimrc ~/.vimrc.bak

git clone https://github.com/AlexeyKrasnoperov/vim_config.git ~/.vim
git clone https://github.com/VundleVim/Vundle.vim.git ~/.vim/bundle/Vundle.vim

ln -s ~/.vim/vimrc ~/.vimrc

# install plugins
vim +PluginInstall +qall