vim: add package repository listing

master
an 2019-06-29 15:57:32 -04:00
parent 85785aafe3
commit 4c06d068a7
2 changed files with 35 additions and 2 deletions

View File

@ -1,5 +1,6 @@
#!/usr/bin/env fish
# copy regular files
mkdir -p \
applications \
build-system \
@ -9,12 +10,20 @@ mkdir -p \
themes \
vim
tree -dL 3 ~/.vim/pack > vim/packages
while read f t
eval set t $t
cp -r $t $f
end < files
# copy vim package names
tree -dL 3 ~/.vim/pack > vim/packages
pushd
for repo in ~/.vim/pack/*/*/*
cd $repo
echo (basename $PWD) "<"(git config --get remote.origin.url)">"
end > vim/package_repos
popd
sed -i 's/password>.*<\//password>password removed<\//g' network/icecast.xml
sed -i 's/password\(\s*\)".*"/password\1"password removed"/g' network/mpd.conf

24
vim/package_repos Normal file
View File

@ -0,0 +1,24 @@
lh-vim-lib <https://github.com/LucHermitte/lh-vim-lib>
base16-vim <https://github.com/chriskempson/base16-vim>
mycolors <git@git.greyserv.net:marrub/my-vim-colors.git>
vim-asm_ca65 <https://github.com/maxbane/vim-asm_ca65>
vim-gdscript3 <https://github.com/calviken/vim-gdscript3>
vim-polyglot <https://github.com/sheerun/vim-polyglot>
vim-zscript <git@github.com:marrub--/vim-zscript.git>
ack.vim <https://github.com/mileszs/ack.vim>
CSApprox <https://github.com/vim-scripts/CSApprox>
tagbar <https://github.com/majutsushi/tagbar>
twitvim <https://github.com/twitvim/twitvim.git>
vim-emoji <https://github.com/junegunn/vim-emoji>
vim-gutentags <https://github.com/ludovicchabant/vim-gutentags.git>
vim-submode <https://github.com/kana/vim-submode>
bufexplorer <https://github.com/jlanzarotta/bufexplorer>
rainbow <https://github.com/luochen1990/rainbow>
setcolors
tabular <https://github.com/godlygeek/tabular>
vim-abolish <https://github.com/tpope/vim-abolish.git>
vim-buftabline <https://github.com/ap/vim-buftabline>
vim-easy-align <https://github.com/junegunn/vim-easy-align.git>
vim-fugitive <https://github.com/tpope/vim-fugitive>
vim-localvimrc <https://github.com/embear/vim-localvimrc>
vim-markdown-toc <https://github.com/mzlogin/vim-markdown-toc>