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
48
vimrc
48
vimrc
|
@ -10,26 +10,26 @@
|
||||||
""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
|
""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
|
||||||
"[Plug-ins list]""""""""""""""""""""""""""""""""""""""""""""""""""""""""
|
"[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 |"
|
"| 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 |"
|
"| 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]""""""""""""""""""""""""""""""""""""""""""""""""""""
|
"[Colorschemes list]""""""""""""""""""""""""""""""""""""""""""""""""""""
|
||||||
"+------------------+-------------------------------------------------+"
|
"+------------------+-------------------------------------------------+"
|
||||||
"| Molokai | https://github.com/tomasr/molokai |"
|
"| Solarized | https://github.com/altercation/vim-colors-solarized |"
|
||||||
"| Mirodark | https://github.com/djjcast/mirodark |"
|
|
||||||
"+------------------+-------------------------------------------------+"
|
"+------------------+-------------------------------------------------+"
|
||||||
""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
|
""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
|
||||||
"[To disable compatibility with Vi]"
|
"[To disable compatibility with Vi]"
|
||||||
|
@ -68,14 +68,22 @@ if has("unix") || has("mac")
|
||||||
map <F6> :NERDTreeToggle<CR>
|
map <F6> :NERDTreeToggle<CR>
|
||||||
Plugin 'LaTeX-Box-Team/LaTeX-Box'
|
Plugin 'LaTeX-Box-Team/LaTeX-Box'
|
||||||
map <LocalLeader>ll :Latexmk<CR>
|
map <LocalLeader>ll :Latexmk<CR>
|
||||||
|
if isdirectory(expand("/home/lhark/.vim/bundle/YouCompleteMe"))
|
||||||
|
"[Workaround for YCM non-portability]"
|
||||||
|
Plugin 'Valloric/YouCompleteMe'
|
||||||
|
else
|
||||||
Plugin 'AutoComplPop'
|
Plugin 'AutoComplPop'
|
||||||
Plugin 'kien/ctrlp.vim'
|
endif
|
||||||
|
Plugin 'bling/vim-airline'
|
||||||
Plugin 'godlygeek/tabular'
|
Plugin 'godlygeek/tabular'
|
||||||
Plugin 'tpope/vim-surround'
|
Plugin 'kien/ctrlp.vim'
|
||||||
Plugin 'mhinz/vim-startify'
|
|
||||||
Plugin 'Raimondi/delimitMate'
|
|
||||||
Plugin 'msanders/snipmate.vim'
|
|
||||||
Plugin 'Lokaltog/vim-easymotion'
|
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()
|
call vundle#end()
|
||||||
catch
|
catch
|
||||||
endtry
|
endtry
|
||||||
|
|
Loading…
Reference in a new issue