Added word plugins

master
mark 2021-04-09 14:28:18 -07:00
parent 896b2f58b6
commit 27c47c93bf
8 changed files with 33 additions and 0 deletions

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
.netrwhist

19
.gitmodules vendored
View File

@ -4,3 +4,22 @@
[submodule "pack/bundle/start/hexHighlight"]
path = pack/bundle/start/hexHighlight
url = https://github.com/coldfix/hexHighlight.git
[submodule "pack/bundle/start/nerdtree"]
path = pack/bundle/start/nerdtree
url = ssh://git@betalupi.com:33/vim-plugins/nerdtree.git
[submodule "vim-boxdraw/"]
url = ssh://git@betalupi.com:33/vim-plugins/boxdraw.git
[submodule "hexHighlight"]
url = https://git.betalupi.com/vim-plugins/hex-highlight
[submodule "pack/bundle/start/gitgutter"]
path = pack/bundle/start/gitgutter
url = ssh://git@betalupi.com:33/vim-plugins/gitgutter.git
[submodule "pack/bundle/start/pencil"]
path = pack/bundle/start/pencil
url = ssh://git@betalupi.com:33/vim-plugins/pencil.git
[submodule "pack/bundle/start/wordy"]
path = pack/bundle/start/wordy
url = ssh://git@betalupi.com:33/vim-plugins/wordy.git
[submodule "pack/bundle/start/wordchipper"]
path = pack/bundle/start/wordchipper
url = ssh://git@betalupi.com:33/vim-plugins/wordchipper.git

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

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

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

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

@ -0,0 +1 @@
Subproject commit 667426a0171787b2620dffa5b2d7c01c9040237f

8
vimrc
View File

@ -248,3 +248,11 @@ endif
nmap <F2> <Plug>ToggleHexHighlight
"filetype plugin on " may already be in your .vimrc
let g:pencil#textwidth = 70
augroup pencil
autocmd!
autocmd FileType markdown,mkd call pencil#init({'wrap': 'soft'})
autocmd FileType text call pencil#init()
augroup END