To read this article, you have to make sure that you know linux command and your machine was installed VIM, GIT.
Firstly, install vumdle plugin by command:
1 |
$ git clone https://github.com/gmarik/Vundle.vim.git ~/.vim/bundle/Vundle.vim |
And then,you go to your home directory and look for .vimrc. Open it and add lines below
1 2 3 4 5 6 7 8 9 10 11 |
set nocompatible filetype off set rtp+=~/.vim/bundle/Vundle.vim/ call vundle#begin() Plugin 'gmarik/Vundle.vim' # Add any plugin that you want to install it and make sure that you know plugin git name or git url #Plugin 'https://github.com/ervandew/screen.git' call vundle#end() filetype plugin indent on |
So now, you can open vim and type:
1 |
:PluginInstall |
And waiting for all plugin that you put to .vimrc file is installed completely.
Done!!!