commit 1f5850f96e9235dfc9a182f63eeb1bf92265f857 Author: Siphalor Date: Mon Jul 27 22:18:17 2020 +0200 Initial commit diff --git a/.gitmodules b/.gitmodules new file mode 100644 index 0000000..0114e7c --- /dev/null +++ b/.gitmodules @@ -0,0 +1,57 @@ +[submodule "opt/vim-DrawIt"] + path = opt/vim-DrawIt + url = https://github.com/hrj/vim-DrawIt +[submodule "opt/vim-games"] + path = opt/vim-games + url = https://github.com/jmanoel7/vim-games +[submodule "opt/vim-LanguageTool"] + path = opt/vim-LanguageTool + url = https://github.com/dpelle/vim-LanguageTool +[submodule "start/crafttweaker-vim-highlighting"] + path = start/crafttweaker-vim-highlighting + url = https://github.com/DaeZak/crafttweaker-vim-highlighting +[submodule "start/DoxyGen-Syntax"] + path = start/DoxyGen-Syntax + url = https://github.com/vim-scripts/DoxyGen-Syntax +[submodule "start/json5.vim"] + path = start/json5.vim + url = https://github.com/GutenYe/json5.vim +[submodule "start/PHP-Indenting-for-VIm"] + path = start/PHP-Indenting-for-VIm + url = https://github.com/2072/PHP-Indenting-for-VIm +[submodule "start/TI-Basic-Syntax"] + path = start/TI-Basic-Syntax + url = https://github.com/vim-scripts/TI-Basic-Syntax +[submodule "start/typescript-vim"] + path = start/typescript-vim + url = https://github.com/leafgarland/typescript-vim +[submodule "start/vim-atomified"] + path = start/vim-atomified + url = https://github.com/Siphalor/vim-atomified +[submodule "start/vim-FIGlet"] + path = start/vim-FIGlet + url = https://github.com/fadein/vim-FIGlet +[submodule "start/vim-fswitch"] + path = start/vim-fswitch + url = https://github.com/derekwyatt/vim-fswitch +[submodule "start/vim-fugitive"] + path = start/vim-fugitive + url = https://github.com/tpope/vim-fugitive +[submodule "start/vim-hjson"] + path = start/vim-hjson + url = https://github.com/hjson/vim-hjson +[submodule "start/vim-ionic2"] + path = start/vim-ionic2 + url = https://github.com/akz92/vim-ionic2 +[submodule "start/vim-json"] + path = start/vim-json + url = https://github.com/leshill/vim-json +[submodule "start/vim-rng"] + path = start/vim-rng + url = https://github.com/dahu/vim-rng +[submodule "start/vimtex"] + path = start/vimtex + url = https://github.com/lervag/vimtex +[submodule "start/vim-toml"] + path = start/vim-toml + url = https://github.com/cespare/vim-toml diff --git a/opt/submodularize.sh b/opt/submodularize.sh new file mode 100644 index 0000000..22a5c83 --- /dev/null +++ b/opt/submodularize.sh @@ -0,0 +1,11 @@ +#!/bin/bash + +for dir in $(ls -d */) +do + cd $dir + url=$(git remote get-url origin) + echo $url + cd - + rm -rf $dir + git submodule add $url +done diff --git a/opt/update.sh b/opt/update.sh new file mode 100644 index 0000000..c51cc28 --- /dev/null +++ b/opt/update.sh @@ -0,0 +1,6 @@ +for dir in $(ls -d */) +do + cd $dir + git pull + cd .. +done diff --git a/opt/vim-DrawIt b/opt/vim-DrawIt new file mode 160000 index 0000000..d0adae1 --- /dev/null +++ b/opt/vim-DrawIt @@ -0,0 +1 @@ +Subproject commit d0adae12cdbe52cc1b7d606d5374538d6faa4fb3 diff --git a/opt/vim-LanguageTool b/opt/vim-LanguageTool new file mode 160000 index 0000000..d37b1f0 --- /dev/null +++ b/opt/vim-LanguageTool @@ -0,0 +1 @@ +Subproject commit d37b1f012556a1d299a012a8c97687d586ccd1f7 diff --git a/opt/vim-games b/opt/vim-games new file mode 160000 index 0000000..d3bb045 --- /dev/null +++ b/opt/vim-games @@ -0,0 +1 @@ +Subproject commit d3bb045022d2931c291ad9c24d284e7c6da4fc8d diff --git a/start/DoxyGen-Syntax b/start/DoxyGen-Syntax new file mode 160000 index 0000000..c72d29f --- /dev/null +++ b/start/DoxyGen-Syntax @@ -0,0 +1 @@ +Subproject commit c72d29f9fa3824157e3ef109e5fcd9afe1e57e6a diff --git a/start/PHP-Indenting-for-VIm b/start/PHP-Indenting-for-VIm new file mode 160000 index 0000000..7b524fa --- /dev/null +++ b/start/PHP-Indenting-for-VIm @@ -0,0 +1 @@ +Subproject commit 7b524fac30e03e2d49889759e8f0c54ce6dfeacb diff --git a/start/TI-Basic-Syntax b/start/TI-Basic-Syntax new file mode 160000 index 0000000..58deacd --- /dev/null +++ b/start/TI-Basic-Syntax @@ -0,0 +1 @@ +Subproject commit 58deacdceeb9fab6b42e000e6ce88360f60ee3f7 diff --git a/start/crafttweaker-vim-highlighting b/start/crafttweaker-vim-highlighting new file mode 160000 index 0000000..b92a89b --- /dev/null +++ b/start/crafttweaker-vim-highlighting @@ -0,0 +1 @@ +Subproject commit b92a89be01eac96c9367c4889b2405235ddcd769 diff --git a/start/json5.vim b/start/json5.vim new file mode 160000 index 0000000..1e17189 --- /dev/null +++ b/start/json5.vim @@ -0,0 +1 @@ +Subproject commit 1e1718959b33b9af9406d0ebf61cfcd71e274385 diff --git a/start/submodularize.sh b/start/submodularize.sh new file mode 100644 index 0000000..22a5c83 --- /dev/null +++ b/start/submodularize.sh @@ -0,0 +1,11 @@ +#!/bin/bash + +for dir in $(ls -d */) +do + cd $dir + url=$(git remote get-url origin) + echo $url + cd - + rm -rf $dir + git submodule add $url +done diff --git a/start/typescript-vim b/start/typescript-vim new file mode 160000 index 0000000..17d85d8 --- /dev/null +++ b/start/typescript-vim @@ -0,0 +1 @@ +Subproject commit 17d85d8051ba21283e62a9101734981e10b732fd diff --git a/start/update.sh b/start/update.sh new file mode 100644 index 0000000..c51cc28 --- /dev/null +++ b/start/update.sh @@ -0,0 +1,6 @@ +for dir in $(ls -d */) +do + cd $dir + git pull + cd .. +done diff --git a/start/vim-FIGlet b/start/vim-FIGlet new file mode 160000 index 0000000..2578e2d --- /dev/null +++ b/start/vim-FIGlet @@ -0,0 +1 @@ +Subproject commit 2578e2d40cdcc9d44aff0ff2409e8d71e8423b5e diff --git a/start/vim-atomified b/start/vim-atomified new file mode 160000 index 0000000..9548049 --- /dev/null +++ b/start/vim-atomified @@ -0,0 +1 @@ +Subproject commit 954804978c4acd3bf661b36c3453dd16ea853d9a diff --git a/start/vim-fswitch b/start/vim-fswitch new file mode 160000 index 0000000..94acdd8 --- /dev/null +++ b/start/vim-fswitch @@ -0,0 +1 @@ +Subproject commit 94acdd8bc92458d3bf7e6557df8d93b533564491 diff --git a/start/vim-fugitive b/start/vim-fugitive new file mode 160000 index 0000000..1da7c13 --- /dev/null +++ b/start/vim-fugitive @@ -0,0 +1 @@ +Subproject commit 1da7c133b109cd329060174a104e325e4d6bcc82 diff --git a/start/vim-hjson b/start/vim-hjson new file mode 160000 index 0000000..adc104d --- /dev/null +++ b/start/vim-hjson @@ -0,0 +1 @@ +Subproject commit adc104d4a4041a482e1af1914895a119e343c7e1 diff --git a/start/vim-ionic2 b/start/vim-ionic2 new file mode 160000 index 0000000..f70fe2b --- /dev/null +++ b/start/vim-ionic2 @@ -0,0 +1 @@ +Subproject commit f70fe2b3c4e9bd1fe24f5f0ba895701c0c8d90d2 diff --git a/start/vim-json b/start/vim-json new file mode 160000 index 0000000..3029554 --- /dev/null +++ b/start/vim-json @@ -0,0 +1 @@ +Subproject commit 3029554ee1619f478fc5222bf4c6c08909b1be9c diff --git a/start/vim-rng b/start/vim-rng new file mode 160000 index 0000000..be3f732 --- /dev/null +++ b/start/vim-rng @@ -0,0 +1 @@ +Subproject commit be3f7326c5ab80ebddae64c1f7188aa6856f5eb5 diff --git a/start/vim-toml b/start/vim-toml new file mode 160000 index 0000000..897cb4e --- /dev/null +++ b/start/vim-toml @@ -0,0 +1 @@ +Subproject commit 897cb4eaa81a0366bc859effe14116660d4015cd diff --git a/start/vimtex b/start/vimtex new file mode 160000 index 0000000..f5e2353 --- /dev/null +++ b/start/vimtex @@ -0,0 +1 @@ +Subproject commit f5e2353a2a7209b882265672ec3ff7d5e8eb88a5