From 8841e42dab40e3300884abf350c3e56ab8c7098c Mon Sep 17 00:00:00 2001 From: waldek Date: Sat, 26 Feb 2022 16:42:10 +0100 Subject: [PATCH] mods --- bootstrap.sh | 23 +++++++++++------------ 1 file changed, 11 insertions(+), 12 deletions(-) diff --git a/bootstrap.sh b/bootstrap.sh index 3a6f131..187f3de 100755 --- a/bootstrap.sh +++ b/bootstrap.sh @@ -5,15 +5,14 @@ LOCALHOME="/home/" echo "setting up $ME" HOME=$LOCALHOME$ME -apt update && apt install -y zsh git tig tmux vim-nox htop -su $ME -c "echo $(whoami)" -su $ME -c "cd $HOME" -su $ME -c "git clone git://github.com/robbyrussell/oh-my-zsh.git $HOME/.oh-my-zsh" -su $ME -c "cp $HOME/.oh-my-zsh/templates/zshrc.zsh-template $HOME/.zshrc" -chsh -s /bin/zsh $ME -su $ME -c "mkdir $HOME/sources" -su $ME -c "git clone https://gitea.86thumbs.net/waldek/vimrc.git $HOME/sources/vimrc" -su $ME -c "cd $HOME" -su $ME -c "ln -s $HOME/sources/vimrc/main.vimrc $HOME/.vimrc" -su $ME -c "git clone https://github.com/VundleVim/Vundle.vim.git $HOME/.vim/bundle/Vundle.vim" -su $ME -c "vim +VundleInstall +qall" +sudo apt update && sudo apt install -y zsh git tig tmux vim-nox htop +cd $HOME +git clone git://github.com/robbyrussell/oh-my-zsh.git $HOME/.oh-my-zsh +cp $HOME/.oh-my-zsh/templates/zshrc.zsh-template $HOME/.zshrc +sudo chsh -s /bin/zsh $ME +mkdir $HOME/sources +git clone https://gitea.86thumbs.net/waldek/vimrc.git $HOME/sources/vimrc +cd $HOME +ln -s $HOME/sources/vimrc/main.vimrc $HOME/.vimrc +git clone https://github.com/VundleVim/Vundle.vim.git $HOME/.vim/bundle/Vundle.vim +vim +VundleInstall +qall"