Switch from vundle to vim-plug

This commit is contained in:
ItsDrike 2021-05-10 23:15:09 +02:00
parent 1bc839b375
commit 22a550804a
No known key found for this signature in database
GPG key ID: B5F6B41F708C3ADD
3 changed files with 2817 additions and 11 deletions

View file

@ -73,22 +73,28 @@ noremap <silent> <C-Right> :vertical resize -3<CR>
noremap <silent> <C-Up> :resize +3<CR> noremap <silent> <C-Up> :resize +3<CR>
noremap <silent> <C-Down> :resize -3<CR> noremap <silent> <C-Down> :resize -3<CR>
"
map <C-c> "+y
vnoremap <C-v> "+p
" Vundle " Vundle
filetype off " required filetype off " required
set nocompatible " be iMproved, required set nocompatible " be iMproved, required
set rtp+=~/.local/share/vim/bundle/Vundle.vim "set rtp+=~/.local/share/vim/bundle/Vundle.vim
call vundle#begin('~/.local/share/vim/bundle') "all vundle#begin('~/.local/share/vim/bundle')
call plug#begin('~/.local/share/vim/plugged')
Plugin 'VundleVim/Vundle.vim' " Let vundle manage itself Plug 'VundleVim/Vundle.vim' " Let vundle manage itself
Plugin 'airblade/vim-gitgutter' " Shows Git diff Plug 'airblade/vim-gitgutter' " Shows Git diff
Plugin 'joshdick/onedark.vim' " OneDark theme Plug 'joshdick/onedark.vim' " OneDark theme
Plugin 'vim-airline/vim-airline' " AirLine statusline Plug 'vim-airline/vim-airline' " AirLine statusline
Plugin 'vim-airline/vim-airline-themes' " AirLine statusline themes Plug 'vim-airline/vim-airline-themes' " AirLine statusline themes
Plugin 'vim-syntastic/syntastic' " Syntax checking Plug 'vim-syntastic/syntastic' " Syntax checking
Plugin 'vim-python/python-syntax' " Python highlighting Plug 'vim-python/python-syntax' " Python highlighting
call vundle#end() "call vundle#end()
call plug#end()
filetype plugin indent on filetype plugin indent on
" User interface / Theme " User interface / Theme

File diff suppressed because it is too large Load diff

@ -1 +0,0 @@
Subproject commit b255382d6242d7ea3877bf059d2934125e0c4d95