Feat: remove not necessary vim plugins

This commit is contained in:
Bertrand Benjamin 2020-07-17 06:38:25 +02:00
parent e678fb0dc2
commit faa0948750
1 changed files with 16 additions and 16 deletions

View File

@ -7,15 +7,15 @@ let localleader = "\<Space>"
" set the runtime path to include plug.com and initialize " set the runtime path to include plug.com and initialize
call plug#begin('~/.vim/plugged') call plug#begin('~/.vim/plugged')
"" plug.vim management
Plug 'junegunn/vim-plug'
" Airline statusline " Airline statusline
" Plug 'vim-airline/vim-airline' " Plug 'vim-airline/vim-airline'
" Plug 'vim-airline/vim-airline-themes' " Plug 'vim-airline/vim-airline-themes'
Plug 'itchyny/lightline.vim' Plug 'itchyny/lightline.vim'
"" plug.vim management
Plug 'junegunn/vim-plug'
"" Basic config for vim "" Basic config for vim
Plug 'tpope/vim-sensible' Plug 'tpope/vim-sensible'
@ -31,8 +31,8 @@ Plug 'Xuyuanp/nerdtree-git-plugin'
Plug 'ervandew/supertab' Plug 'ervandew/supertab'
" Special autocompletion " Special autocompletion
Plug 'SirVer/ultisnips' " Plug 'SirVer/ultisnips'
Plug 'honza/vim-snippets' " Plug 'honza/vim-snippets'
"Plug 'ctrlpvim/ctrlp.vim' "Plug 'ctrlpvim/ctrlp.vim'
"Plug 'Valloric/YouCompleteMe' "Plug 'Valloric/YouCompleteMe'
@ -40,23 +40,23 @@ Plug 'honza/vim-snippets'
Plug 'tpope/vim-surround' Plug 'tpope/vim-surround'
"" Plug vimtex "" Plug vimtex
Plug 'lervag/vimtex' " Plug 'lervag/vimtex'
" Asynchronous Lint Engine " Asynchronous Lint Engine
Plug 'w0rp/ale' " Plug 'w0rp/ale'
" Completion for python " Completion for python
Plug 'davidhalter/jedi-vim' " Plug 'davidhalter/jedi-vim'
" Code formating for python " Code formating for python
Plug 'python/black' " Plug 'python/black'
" Vim note taking plugin " Vim note taking plugin
Plug 'xolox/vim-misc' " Plug 'xolox/vim-misc'
Plug 'xolox/vim-notes' " Plug 'xolox/vim-notes'
" vuejs syntax " vuejs syntax
Plug 'posva/vim-vue' " Plug 'posva/vim-vue'
" Clever substitute " Clever substitute
Plug 'tpope/tpope-vim-abolish' Plug 'tpope/tpope-vim-abolish'
@ -68,7 +68,7 @@ Plug 'tpope/vim-repeat'
Plug 'airblade/vim-gitgutter' Plug 'airblade/vim-gitgutter'
" Emmet " Emmet
Plug 'mattn/emmet-vim' " Plug 'mattn/emmet-vim'
" Polyglot synthax hightlight autodetect " Polyglot synthax hightlight autodetect
Plug 'sheerun/vim-polyglot' Plug 'sheerun/vim-polyglot'
@ -77,14 +77,14 @@ Plug 'sheerun/vim-polyglot'
Plug 'Yggdroot/indentLine' Plug 'Yggdroot/indentLine'
" fzf " fzf
Plug 'junegunn/fzf.vim' " Plug 'junegunn/fzf.vim'
" Tmux integration " Tmux integration
Plug 'christoomey/vim-tmux-navigator' Plug 'christoomey/vim-tmux-navigator'
" Python folding " Python folding
Plug 'kalekundert/vim-coiled-snake' " Plug 'kalekundert/vim-coiled-snake'
Plug 'Konfekt/FastFold' " Plug 'Konfekt/FastFold'
" Touch typing " Touch typing
" Plug 'vim-scripts/TTCoach' " Plug 'vim-scripts/TTCoach'