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

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