Skip to content

Latest commit

 

History

History
93 lines (79 loc) · 3.14 KB

README.md

File metadata and controls

93 lines (79 loc) · 3.14 KB

My Vim Setup

Screenshot]

How to install:

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

The install script:

Cloning this repo will install the following Vim packages:

Here are some more plugins that I have used previously:

Cloning this repo will install offer to install these linters:

Run terminal vim with vim or vi and MacVim with mvim.