diff options
-rwxr-xr-x | setup.sh | 62 |
1 files changed, 34 insertions, 28 deletions
@@ -1,33 +1,39 @@ #!/bin/zsh -x -stow -t $HOME clamz -stow -t $HOME feh -stow -t $HOME git -stow -t $HOME gtk -stow -t $HOME htop -stow -t $HOME imwheel -stow -t $HOME input -stow -t $HOME khal -stow -t $HOME moc -stow -t $HOME mozilla -stow -t $HOME mpv -stow -t $HOME multitail -stow -t $HOME mutt -stow -t $HOME ncftp -stow -t $HOME newsbeuter -stow -t $HOME npm -stow -t $HOME ratpoison -stow -t $HOME rtorrent -stow -t $HOME subversion -stow -t $HOME tex -stow -t $HOME theano -stow -t $HOME tmux -stow -t $HOME vim -stow -t $HOME X -stow -t $HOME zsh -git submodule foreach git pull origin master -cd $HOME/.vim/autoload; ln -s ../bundle/pathogen/autoload/pathogen.vim . -cd $HOME/.urxvt; ln -s urxvt-perls/clipboard .; ln -s urxvt-perls/keyboard-select .; ln -s urxvt-tabbedex/tabbedex .; ln -s urxvt-perls/url-select . +PKG=(\ + clamz \ + feh \ + git \ + gtk \ + htop \ + imwheel \ + input \ + khal \ + moc \ + mozilla \ + mpv \ + multitail \ + mutt \ + ncftp \ + newsbeuter \ + npm \ + ratpoison \ + rtorrent \ + subversion \ + tex \ + theano \ + tmux \ + urxvt \ + vim \ + X \ + xdg \ + zsh \ +) +for i in $PKG; do + stow -t $HOME $i +done +cd $HOME/.vim/autoload; ln -s ../bundle/pathogen/autoload/pathogen.vim . +cd $HOME/.urxvt; ln -s urxvt-perls/clipboard .; ln -s urxvt-perls/keyboard-select .; ln -s urxvt-tabbedex/tabbedex .; ln -s urxvt-perls/url-select . |