Vim: Use native plugin system

This commit is contained in:
Bill Niblock 2019-08-01 16:22:52 +00:00
parent f6a3a1781a
commit 25c4e4a3c7
6 changed files with 16 additions and 20 deletions

12
.gitmodules vendored Normal file
View file

@ -0,0 +1,12 @@
[submodule "vim/vim/pack/plugins/start/vim-fugitive"]
path = vim/vim/pack/plugins/start/vim-fugitive
url = https://github.com/tpope/vim-fugitive.git
[submodule "vim/vim/pack/plugins/start/vim-unimpaired"]
path = vim/vim/pack/plugins/start/vim-unimpaired
url = https://github.com/tpope/vim-unimpaired.git
[submodule "vim/vim/pack/plugins/start/vim-commentary"]
path = vim/vim/pack/plugins/start/vim-commentary
url = https://github.com/tpope/vim-commentary.git
[submodule "vim/vim/pack/plugins/start/vim-polyglot"]
path = vim/vim/pack/plugins/start/vim-polyglot
url = https://github.com/sheerun/vim-polyglot.git

@ -0,0 +1 @@
Subproject commit 141d9d32a9fb58fe474fcc89cd7221eb2dd57b3a

@ -0,0 +1 @@
Subproject commit 44ade58ed509f7b21608ae061223d4ffef1e19d8

@ -0,0 +1 @@
Subproject commit 3ddca5da461ebfaa82104f82e3cbf19d1c326ade

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

View file

@ -1,20 +0,0 @@
" ==============================================================================
" vimrc-plugins: Plug-in configuration. Using vim-plug.
" ==============================================================================
" Fetch & Install Self
if empty(glob('~/.vim/autoload/plug.vim'))
silent !curl -fLo ~/.vim/autoload/plug.vim --create-dirs
\ https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim
autocmd VimEnter * PlugInstall | source $MYVIMRC
endif
call plug#begin('~/.vim/bundle')
Plug 'tpope/vim-fugitive'
Plug 'tpope/vim-unimpaired'
Plug 'tpope/vim-commentary'
"Plug 'ludovicchabant/vim-gutentags'
Plug 'sheerun/vim-polyglot'
Plug 'junegunn/goyo.vim'
call plug#end()