Add plugins : vim-airline, vim-colors-solarized and optionnaly YouCompleteMe
This commit is contained in:
parent
256cc8cd4a
commit
034ed1957a
1 changed files with 29 additions and 21 deletions
50
vimrc
50
vimrc
|
@ -10,26 +10,26 @@
|
|||
""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
|
||||
"[Plug-ins list]""""""""""""""""""""""""""""""""""""""""""""""""""""""""
|
||||
"+------------------+-------------------------------------------------+"
|
||||
"| CtrlP | https://github.com/kien/ctrlp.vim |"
|
||||
"| Undotree | https://github.com/mbbill/undotree |"
|
||||
"| Python-Mode | https://github.com/klen/python-mode |"
|
||||
"| Tagbar | https://github.com/majutsushi/tagbar |"
|
||||
"| Tabular | https://github.com/godlygeek/tabular |"
|
||||
"| Vim-Perl | https://github.com/vim-perl/vim-perl |"
|
||||
"| Surround | https://github.com/tpope/vim-surround |"
|
||||
"| Vim-Startify | https://github.com/mhinz/vim-startify |"
|
||||
"| NERDTree | https://github.com/scrooloose/nerdtree |"
|
||||
"| DelimitMate | https://github.com/Raimondi/delimitMate |"
|
||||
"| Vundle | https://github.com/gmarik/Vundle.vim.git |"
|
||||
"| SnipMate | https://github.com/msanders/snipmate.vim |"
|
||||
"| EasyMotion | https://github.com/Lokaltog/vim-easymotion |"
|
||||
"| AutoComplPop | https://github.com/vim-scripts/AutoComplPop |"
|
||||
"| CtrlP | https://github.com/kien/ctrlp.vim |"
|
||||
"| DelimitMate | https://github.com/Raimondi/delimitMate |"
|
||||
"| EasyMotion | https://github.com/Lokaltog/vim-easymotion |"
|
||||
"| Multiple-Cursors | https://github.com/terryma/vim-multiple-cursors |"
|
||||
"| NERDTree | https://github.com/scrooloose/nerdtree |"
|
||||
"| Python-Mode | https://github.com/klen/python-mode |"
|
||||
"| SnipMate | https://github.com/msanders/snipmate.vim |"
|
||||
"| Surround | https://github.com/tpope/vim-surround |"
|
||||
"| Tabular | https://github.com/godlygeek/tabular |"
|
||||
"| Tagbar | https://github.com/majutsushi/tagbar |"
|
||||
"| Undotree | https://github.com/mbbill/undotree |"
|
||||
"| Vim-Airline | https://github.com/bling/vim-airline |"
|
||||
"| Vim-Perl | https://github.com/vim-perl/vim-perl |"
|
||||
"| Vim-Startify | https://github.com/mhinz/vim-startify |"
|
||||
"| Vundle | https://github.com/gmarik/Vundle.vim.git |"
|
||||
"+------------------+-------------------------------------------------+"
|
||||
"[Colorschemes list]""""""""""""""""""""""""""""""""""""""""""""""""""""
|
||||
"+------------------+-------------------------------------------------+"
|
||||
"| Molokai | https://github.com/tomasr/molokai |"
|
||||
"| Mirodark | https://github.com/djjcast/mirodark |"
|
||||
"| Solarized | https://github.com/altercation/vim-colors-solarized |"
|
||||
"+------------------+-------------------------------------------------+"
|
||||
""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
|
||||
"[To disable compatibility with Vi]"
|
||||
|
@ -68,14 +68,22 @@ if has("unix") || has("mac")
|
|||
map <F6> :NERDTreeToggle<CR>
|
||||
Plugin 'LaTeX-Box-Team/LaTeX-Box'
|
||||
map <LocalLeader>ll :Latexmk<CR>
|
||||
Plugin 'AutoComplPop'
|
||||
Plugin 'kien/ctrlp.vim'
|
||||
if isdirectory(expand("/home/lhark/.vim/bundle/YouCompleteMe"))
|
||||
"[Workaround for YCM non-portability]"
|
||||
Plugin 'Valloric/YouCompleteMe'
|
||||
else
|
||||
Plugin 'AutoComplPop'
|
||||
endif
|
||||
Plugin 'bling/vim-airline'
|
||||
Plugin 'godlygeek/tabular'
|
||||
Plugin 'tpope/vim-surround'
|
||||
Plugin 'mhinz/vim-startify'
|
||||
Plugin 'Raimondi/delimitMate'
|
||||
Plugin 'msanders/snipmate.vim'
|
||||
Plugin 'kien/ctrlp.vim'
|
||||
Plugin 'Lokaltog/vim-easymotion'
|
||||
Plugin 'mhinz/vim-startify'
|
||||
Plugin 'msanders/snipmate.vim'
|
||||
Plugin 'Raimondi/delimitMate'
|
||||
Plugin 'tpope/vim-surround'
|
||||
"[Solarized theme]"
|
||||
Plugin 'altercation/vim-colors-solarized'
|
||||
call vundle#end()
|
||||
catch
|
||||
endtry
|
||||
|
|
Loading…
Reference in a new issue