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

6
.gitmodules vendored
View File

@@ -17,13 +17,13 @@
path = .config/tmux/plugins/tpm path = .config/tmux/plugins/tpm
url = https://github.com/tmux-plugins/tpm url = https://github.com/tmux-plugins/tpm
[submodule ".config/vim/plugged/coc.nvim"] [submodule ".config/vim/plugged/coc.nvim"]
path = .config/vim/plugged/coc.nvim path = .config/vim/pack/plugins/opt/coc.nvim
url = https://github.com/neoclide/coc.nvim.git url = https://github.com/neoclide/coc.nvim.git
[submodule ".config/vim/plugged/onedark.vim"] [submodule ".config/vim/plugged/onedark.vim"]
path = .config/vim/plugged/onedark.vim path = .config/vim/pack/plugins/opt/onedark.vim
url = https://github.com/joshdick/onedark.vim url = https://github.com/joshdick/onedark.vim
[submodule ".config/vim/plugged/vim-gitgutter"] [submodule ".config/vim/plugged/vim-gitgutter"]
path = .config/vim/plugged/vim-gitgutter path = .config/vim/pack/plugins/opt/vim-gitgutter
url = https://github.com/airblade/vim-gitgutter url = https://github.com/airblade/vim-gitgutter
[submodule ".config/zsh/plugins/fzf"] [submodule ".config/zsh/plugins/fzf"]
path = .config/zsh/plugins/fzf path = .config/zsh/plugins/fzf

View File

@@ -25,3 +25,6 @@
create: true create: true
glob: true glob: true
path: .local/bin/* path: .local/bin/*
~/.local/share/nvim/site/pack:
create: true
path: .config/vim/pack