Removed submodule plugins and added plugin manager

master
Mark 2022-08-03 10:04:13 -07:00
parent 9024799d0f
commit ea7d8fcfea
Signed by: Mark
GPG Key ID: AD62BB059C2AAEE4
10 changed files with 2828 additions and 24 deletions

1
.gitignore vendored
View File

@ -1,2 +1,3 @@
.netrwhist .netrwhist
conceal.vim 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

@ -1 +0,0 @@
Subproject commit 24cc47789557827209add5881c226243711475ce

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

@ -1 +0,0 @@
Subproject commit 81f3eaba295b3fceb2d032db57e5eae99ae480f8

@ -1 +0,0 @@
Subproject commit 2135374d48a7cb89efd5e818c12bb0ff450dfbb4

@ -1 +0,0 @@
Subproject commit 24f6d94dd03ba0fdc703265fe281f70cf2b45ba6

@ -1 +0,0 @@
Subproject commit 79ed30dbc2b5127fb85b13a613d26ddf336c8433

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 " The matchit plugin makes the % command work better, but it is not backwards
" compatible. " compatible.
" The ! means the package won't be loaded right away but when plugins are " The ! means the package won't be loaded right away but when plugins are
@ -261,6 +274,8 @@ augroup pencil
augroup END augroup END
" Configure and load conceal chars " Configure and load conceal chars
:set conceallevel=2 :set conceallevel=2
highlight Conceal ctermbg=NONE ctermfg=green guibg=NONE guifg=NONE highlight Conceal ctermbg=NONE ctermfg=green guibg=NONE guifg=NONE