Clone the repo:
cd ~/
git clone https://github.com/ldmcdaniel/.vim
Install Vim 8:
brew install vim --with-override-system-vi
Fix symbolic link to ~/.vimrc:
unlink ~/.vimrc
unlink ~/.vim
ln -s ~/.vim/.vimrc ~/.vimrc
Enter the interactive installation menu:
~/dotfiles/menu.sh
To add more plugins:
cd ~/.vim/plugins/start/
git submodule add https://github.com/repo-name/new-submodule-name.git
To remove a plugin:
git submodule deinit <path_to_submodule>
git rm <path_to_submodule>
git commit-m "Removed submodule"
rm -rf .git/modules/<path_to_submodule>
Install flake8:
python -m pip install flake8
- ale
- auto-pairs
- ctrlp
- deoplete
- emmet-vim
- indentline
- matchtagalways
- nerdcommenter
- nerdtree
- nvim-yarp //Needed for deoplete
- ultisnips
- vim-airline
- vim-better-whitespace
- vim-css-color
- vim-fugitive
- vim-gitgutter
- vim-hug-neovim-rpc //Needed for deoplete
- vim-jsdoc
- vim-jsx
- vim-multiple-cursors
- vim-one
- vim-sass-lint
- vim-surround
- vim-vue
Run terminal vim with vim
or vi
and MacVim with mvim
.