Switch to native vim plugin management

Since the vim plugins are stored in submodules and vim-plug is not a big
fan of that when installing (Needs PlugClean and PlugInstall again
although the repos of the plugins were already pulled) it makes more
sense to me to use vim8s native plugin management.
This commit is contained in:
2020-08-24 03:08:13 +02:00
parent 2c457b3276
commit 420bcf6be5
7 changed files with 9 additions and 2708 deletions

File diff suppressed because it is too large Load Diff

View File

@@ -1,15 +1,12 @@
" Plugins ######################################################################
call plug#begin('~/.config/vim/plugged')
" Auto completion
Plug 'neoclide/coc.nvim', {'branch': 'release'}
packadd! coc.nvim
source $XDG_CONFIG_HOME/vim/coc.nvim.vim
" Theme
Plug 'joshdick/onedark.vim'
packadd! onedark.vim
" Git information
Plug 'airblade/vim-gitgutter'
packadd! vim-gitgutter
call plug#end()
" Keybinds #####################################################################
" Set leader key
let mapleader = "\<Space>"