swtich vim to use vim-plug as the plugin manager

This commit is contained in:
Jidbo 2019-12-11 22:05:30 +01:00
parent 8b566dba08
commit 8206bd31a6
No known key found for this signature in database
GPG key ID: 176CBC4DBB0A8965

45
vimrc
View file

@ -1,70 +1,61 @@
set nocompatible " required set nocompatible " required
filetype off " required
" set the runtime path to include Vundle and initialize " set the runtime path to include Vundle and initialize
set rtp+=~/.vim/bundle/Vundle.vim call plug#begin('~/.vim/bundle')
call vundle#begin()
" let Vundle manage Vundle, required
Plugin 'VundleVim/Vundle.vim'
" add all your plugins here (note older versions of Vundle
" used Bundle instead of Plugin)
" USEFUL " USEFUL
" comment plugin " comment plugin
Plugin 'tpope/vim-commentary' Plug 'tpope/vim-commentary'
" brackets management " brackets management
Plugin 'machakann/vim-sandwich' Plug 'machakann/vim-sandwich'
" snippets " snippets
Plugin 'SirVer/ultisnips' Plug 'SirVer/ultisnips'
" WINDOW MANAGEMENT " WINDOW MANAGEMENT
" tmux navigator " tmux navigator
Plugin 'christoomey/vim-tmux-navigator' Plug 'christoomey/vim-tmux-navigator'
" winresizer " winresizer
Plugin 'simeji/winresizer' Plug 'simeji/winresizer'
" FILE MANAGEMENT " FILE MANAGEMENT
" nert-tree " nert-tree
Plugin 'scrooloose/nerdtree' Plug 'scrooloose/nerdtree'
" fzf plugin " fzf plugin
Plugin 'junegunn/fzf.vim' Plug 'junegunn/fzf.vim'
" GIT STUFF " GIT STUFF
" git " git
Plugin 'tpope/vim-fugitive' Plug 'tpope/vim-fugitive'
" vim gitgutter " vim gitgutter
Plugin 'airblade/vim-gitgutter' Plug 'airblade/vim-gitgutter'
" COLORS " COLORS
" Plastic colorscheme " Plastic colorscheme
Plugin 'aonemd/kuroi.vim' Plug 'aonemd/kuroi.vim'
" powerline " powerline
Plugin 'vim-airline/vim-airline' Plug 'vim-airline/vim-airline'
Plugin 'vim-airline/vim-airline-themes' Plug 'vim-airline/vim-airline-themes'
" LANGUAGE SUPPORT " LANGUAGE SUPPORT
" vim ale for interaction with language servers " vim ale for interaction with language servers
Plugin 'w0rp/ale' Plug 'w0rp/ale'
" editorconfig plugin " editorconfig plugin
Plugin 'editorconfig/editorconfig-vim' Plug 'editorconfig/editorconfig-vim'
" language packs " language packs
Plugin 'sheerun/vim-polyglot' Plug 'sheerun/vim-polyglot'
" latex " latex
Plugin 'lervag/vimtex' Plug 'lervag/vimtex'
" All of your Plugins must be added before the following line call plug#end() " required
call vundle#end() " required
filetype plugin indent on " required filetype plugin indent on " required
" syntax " syntax