0%

Install-Vim-on-MacOS

Install MacVim

1
brew install cmake macvim

Configuration

1

Install vim-plug

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

Put this at the top of your .vimrc to use Vundle

1
2
3
set nocompatible              " be iMproved, required
filetype off " required

use vundle

1
vim +PluginInstall +qall