Removed submodule plugins and added plugin manager

This commit is contained in:
2022-08-03 10:04:13 -07:00
parent 9024799d0f
commit ea7d8fcfea
10 changed files with 2828 additions and 24 deletions

1
.gitignore vendored
View File

@ -1,2 +1,3 @@
.netrwhist
conceal.vim
plugged

18
.gitmodules vendored
View File

@ -1,18 +0,0 @@
[submodule "pack/bundle/start/vim-boxdraw"]
path = pack/bundle/start/vim-boxdraw
url = ssh://git@git.betalupi.com:33/mirrors/vim-boxdraw.git
[submodule "pack/bundle/start/hexHighlight"]
path = pack/bundle/start/hexHighlight
url = ssh://git@git.betalupi.com:33/mirrors/vim-hexHighlight.git
[submodule "pack/bundle/start/nerdtree"]
path = pack/bundle/start/nerdtree
url = ssh://git@git.betalupi.com:33/mirrors/vim-nerdtree.git
[submodule "pack/bundle/start/gitgutter"]
path = pack/bundle/start/gitgutter
url = ssh://git@git.betalupi.com:33/mirrors/vim-gitgutter.git
[submodule "pack/bundle/start/pencil"]
path = pack/bundle/start/pencil
url = ssh://git@git.betalupi.com:33/mirrors/vim-pencil.git
[submodule "pack/bundle/start/wordchipper"]
path = pack/bundle/start/wordchipper
url = ssh://git@git.betalupi.com:33/mirrors/vim-wordchipper.git

2812
autoload/plug.vim Normal file

File diff suppressed because it is too large Load Diff

15
vimrc
View File

@ -240,6 +240,19 @@ nnoremap <C-o> :set tabstop=8 shiftwidth=8 noexpandtab<CR>
" |_| |_|\__,_|\__, |_|_| |_|___/
" |___/
call plug#begin()
Plug 'ssh://git@git.betalupi.com:33/mirrors/vim-goyo.git'
Plug 'ssh://git@git.betalupi.com:33/mirrors/vim-gitgutter.git'
Plug 'ssh://git@git.betalupi.com:33/mirrors/vim-nerdtree.git'
Plug 'ssh://git@git.betalupi.com:33/mirrors/vim-hexHighlight.git'
Plug 'ssh://git@git.betalupi.com:33/mirrors/vim-pencil.git'
"Plug 'ssh://git@git.betalupi.com:33/mirrors/vim-wordchipper.git'
Plug 'ssh://git@git.betalupi.com:33/mirrors/vim-boxdraw.git'
call plug#end()
" The matchit plugin makes the % command work better, but it is not backwards
" compatible.
" The ! means the package won't be loaded right away but when plugins are
@ -261,6 +274,8 @@ augroup pencil
augroup END
" Configure and load conceal chars
:set conceallevel=2
highlight Conceal ctermbg=NONE ctermfg=green guibg=NONE guifg=NONE