Removed submodule plugins and added plugin manager
This commit is contained in:
1
.gitignore
vendored
1
.gitignore
vendored
@ -1,2 +1,3 @@
|
|||||||
.netrwhist
|
.netrwhist
|
||||||
conceal.vim
|
conceal.vim
|
||||||
|
plugged
|
18
.gitmodules
vendored
18
.gitmodules
vendored
@ -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
2812
autoload/plug.vim
Normal file
File diff suppressed because it is too large
Load Diff
Submodule pack/bundle/start/gitgutter deleted from 24cc477895
Submodule pack/bundle/start/hexHighlight deleted from c7abd7827f
Submodule pack/bundle/start/nerdtree deleted from 81f3eaba29
Submodule pack/bundle/start/pencil deleted from 2135374d48
Submodule pack/bundle/start/vim-boxdraw deleted from 24f6d94dd0
Submodule pack/bundle/start/wordchipper deleted from 79ed30dbc2
15
vimrc
15
vimrc
@ -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
|
||||||
|
Reference in New Issue
Block a user