Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #setting up vundle
- #https://www.digitalocean.com/community/tutorials/how-to-use-vundle-to-manage-vim-plugins-on-a-linux-vps
- git clone https://github.com/gmarik/vundle.git ~/.vim/bundle/vundle
- ##########################add to ~/.vimrc
- set nocompatible
- filetype off
- set rtp+=~/.vim/bundle/vundle/
- call vundle#rc()
- " This is the Vundle package, which can be found on GitHub.
- " For GitHub repos, you specify plugins using the
- " 'user/repository' format
- Plugin 'gmarik/vundle'
- " We could also add repositories with a ".git" extension
- Plugin 'scrooloose/nerdtree.git'
- " To get plugins from Vim Scripts, you can reference the plugin
- " by name as it appears on the site
- Plugin 'Buffergator'
- " Now we can turn our filetype functionality back on
- filetype plugin indent on
- #####################now go into vim and run this#########
- :PluginInstall
- #it might ask for your git username and password
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement