mirror of https://github.com/akelge/vim
Added instructions to install Vundle
Added some useful plugin Changed viminfo
This commit is contained in:
parent
4c64efbf53
commit
4e922859b8
|
@ -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
|
|
@ -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
|
||||||
|
|
Loading…
Reference in New Issue