Added instructions to install Vundle

Added some useful plugin
Changed viminfo
This commit is contained in:
Andrea Mistrali 2015-01-15 11:02:43 +00:00
parent 4c64efbf53
commit 4e922859b8
2 changed files with 11 additions and 1 deletions

8
vim/installVundle.txt Normal file
View File

@ -0,0 +1,8 @@
installVundle.txt
:Author: Andrea Mistrali
:Email: andrea.mistrali@gmail.com
:Date: 2015-01-15 12:01
~ $ git clone https://github.com/gmarik/Vundle.vim.git ~/.vim/bundle/Vundle.vim
~ $ vim +PluginInstall +qall

View File

@ -9,7 +9,7 @@ set nocompatible " Use Vim defaults (much better!)
set backspace=indent,eol,start " allow backspacing over everything set backspace=indent,eol,start " allow backspacing over everything
set textwidth=0 " Textwidth 0 usually, we set it to 79 later set textwidth=0 " Textwidth 0 usually, we set it to 79 later
set backup set backup
set viminfo='20,\"50,f10 set viminfo='20,\"50,f10,!,%
set history=50 set history=50
set nohlsearch set nohlsearch
set nostartofline set nostartofline
@ -31,6 +31,8 @@ Plugin 'vcscommand.vim'
Plugin 'TextFormat' Plugin 'TextFormat'
Plugin 'jsbeautify' Plugin 'jsbeautify'
Plugin 'aperezdc/vim-template.git' Plugin 'aperezdc/vim-template.git'
Plugin 'RecentFiles'
Plugin 'scratch.vim'
call vundle#end() " required call vundle#end() " required
filetype plugin indent on " required filetype plugin indent on " required