This repo contains all my vim configs, plugins and notes. It also carries my vsvimrc along with.
Clone the repo into the vim directory. For linux, this is ~/.vim
. On windows,
use ~/vimfiles
. In gvim, this can be verified with :version
.
git clone https://github.com/harlequin144/vim.git ~/.vim
###Create The vimrc
and gvimrc
Files
For linux:
ln -s ~/.vim/vimrc ~/.vimrc
ln -s ~/.vim/gvimrc ~/.gvimrc
Skip this step for windows. The _vimrc
file within the vim repo serves this
purpose.
###Clone Vundle
####Windows
git clone https://github.com/gmarik/Vundle.vim.git ~/vimfiles/bundle/Vundle.vim
####Linux
git clone https://github.com/gmarik/Vundle.vim.git ~/.vim/bundle/Vundle.vim
###Install Plugins In Vim:
:PluginInstall
###Install Plugin Programs Right now, just autopep8. Looking to get AStyle in later and also YouCompleteMe.