Vim plugins cleanup
This commit is contained in:
parent
12691112e5
commit
5c7fc32af1
1 changed files with 0 additions and 19 deletions
19
vimrc
19
vimrc
|
@ -11,22 +11,14 @@
|
||||||
"[Plug-ins list]""""""""""""""""""""""""""""""""""""""""""""""""""""""""
|
"[Plug-ins list]""""""""""""""""""""""""""""""""""""""""""""""""""""""""
|
||||||
"+------------------+-------------------------------------------------+"
|
"+------------------+-------------------------------------------------+"
|
||||||
"| 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 |"
|
"| 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 |"
|
"| Python-Mode | https://github.com/klen/python-mode |"
|
||||||
"| SnipMate | https://github.com/msanders/snipmate.vim |"
|
|
||||||
"| Surround | https://github.com/tpope/vim-surround |"
|
"| 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 |"
|
"| Undotree | https://github.com/mbbill/undotree |"
|
||||||
"| Vim-Airline | https://github.com/bling/vim-airline |"
|
"| Vim-Airline | https://github.com/bling/vim-airline |"
|
||||||
"| Vim-GLSL | https://github.com/tikhomirov/vim-glsl |"
|
"| Vim-GLSL | https://github.com/tikhomirov/vim-glsl |"
|
||||||
"| Vim-Gnupg | https://github.com/jamessan/vim-gnupg |"
|
"| Vim-Gnupg | https://github.com/jamessan/vim-gnupg |"
|
||||||
"| 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 |"
|
"| Vundle | https://github.com/gmarik/Vundle.vim.git |"
|
||||||
"+------------------+-------------------------------------------------+"
|
"+------------------+-------------------------------------------------+"
|
||||||
"[Colorschemes list]""""""""""""""""""""""""""""""""""""""""""""""""""""
|
"[Colorschemes list]""""""""""""""""""""""""""""""""""""""""""""""""""""
|
||||||
|
@ -56,18 +48,11 @@ if has("unix") || has("mac")
|
||||||
if has("python")
|
if has("python")
|
||||||
Plugin 'klen/python-mode'
|
Plugin 'klen/python-mode'
|
||||||
endif
|
endif
|
||||||
if has("perl")
|
|
||||||
Plugin 'vim-perl/vim-perl'
|
|
||||||
endif
|
|
||||||
if has("ruby")
|
if has("ruby")
|
||||||
Plugin 'terryma/vim-multiple-cursors'
|
Plugin 'terryma/vim-multiple-cursors'
|
||||||
endif
|
endif
|
||||||
Plugin 'majutsushi/tagbar'
|
|
||||||
map <F4> :TagbarToggle<CR>
|
|
||||||
Plugin 'mbbill/undotree'
|
Plugin 'mbbill/undotree'
|
||||||
map <F5> :UndotreeToggle<CR>
|
map <F5> :UndotreeToggle<CR>
|
||||||
Plugin 'scrooloose/nerdtree'
|
|
||||||
map <F6> :NERDTreeToggle<CR>
|
|
||||||
Plugin 'vim-scripts/LaTeX-Box'
|
Plugin 'vim-scripts/LaTeX-Box'
|
||||||
map <LocalLeader>ll :Latexmk<CR>
|
map <LocalLeader>ll :Latexmk<CR>
|
||||||
if isdirectory(expand("/home/lhark/.vim/bundle/YouCompleteMe"))
|
if isdirectory(expand("/home/lhark/.vim/bundle/YouCompleteMe"))
|
||||||
|
@ -81,10 +66,6 @@ if has("unix") || has("mac")
|
||||||
Plugin 'godlygeek/tabular'
|
Plugin 'godlygeek/tabular'
|
||||||
Plugin 'tikhomirov/vim-glsl'
|
Plugin 'tikhomirov/vim-glsl'
|
||||||
Plugin 'jamessan/vim-gnupg'
|
Plugin 'jamessan/vim-gnupg'
|
||||||
Plugin 'kien/ctrlp.vim'
|
|
||||||
Plugin 'Lokaltog/vim-easymotion'
|
|
||||||
Plugin 'mhinz/vim-startify'
|
|
||||||
Plugin 'msanders/snipmate.vim'
|
|
||||||
Plugin 'Raimondi/delimitMate'
|
Plugin 'Raimondi/delimitMate'
|
||||||
Plugin 'tpope/vim-surround'
|
Plugin 'tpope/vim-surround'
|
||||||
Plugin 'captbaritone/better-indent-support-for-php-with-html'
|
Plugin 'captbaritone/better-indent-support-for-php-with-html'
|
||||||
|
|
Loading…
Reference in a new issue