From 790e95dc6c2107a2fdd9a992e89d3b0ed4b9ffb9 Mon Sep 17 00:00:00 2001 From: Rain <20109-Melon__Bread@users.noreply.gitgud.io> Date: Tue, 28 Sep 2021 04:20:56 +0000 Subject: [PATCH] Update Added spacevim, zsh, & Rust --- .config/yadm/bootstrap | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/.config/yadm/bootstrap b/.config/yadm/bootstrap index 6f64ee5..0639c02 100755 --- a/.config/yadm/bootstrap +++ b/.config/yadm/bootstrap @@ -9,3 +9,24 @@ yadm submodule update --recursive --init echo "Installing tmux package manager (tpm)" git clone https://github.com/tmux-plugins/tpm ~/.tmux/plugins/tpm + +echo "Installing SpaceVim" +curl -sLf https://spacevim.org/install.sh | bash + +echo "Installing oh-my-zsh" +sh -c "$(curl -fsSL https://raw.github.com/ohmyzsh/ohmyzsh/master/tools/install.sh)" +source ~/.zshrc +git clone https://github.com/zsh-users/zsh-syntax-highlighting.git ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-syntax-highlighting +git clone https://github.com/zsh-users/zsh-autosuggestions ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autosuggestions +git clone https://github.com/zsh-users/zsh-history-substring-search ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-history-substring-search +git clone https://github.com/spaceship-prompt/spaceship-prompt.git "$ZSH_CUSTOM/themes/spaceship-prompt" --depth=1 +ln -s "$ZSH_CUSTOM/themes/spaceship-prompt/spaceship.zsh-theme" "$ZSH_CUSTOM/themes/spaceship.zsh-theme" + + +echo "Setting up Rust" +sudo pacman -S rustup --noconfirm +rustup install stable + + + +