From 35398aac89b65261aca26e4265b8193cd84e1cd4 Mon Sep 17 00:00:00 2001 From: Blake Ridgway Date: Mon, 22 Feb 2021 15:44:04 -0600 Subject: [PATCH] Update install --- dotfiles/install | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/dotfiles/install b/dotfiles/install index f373731..c0cb14b 100755 --- a/dotfiles/install +++ b/dotfiles/install @@ -18,9 +18,6 @@ ssh-keygen -t ed25519 -C "blake@blakeridgway.dev" # Oh My ZSH is installer sh -c "$(curl -fsSL https://raw.github.com/ohmyzsh/ohmyzsh/master/tools/install.sh)" -# Grab and configure powerlevel9k -# git clone https://github.com/bhilburn/powerlevel9k.git ~/.oh-my-zsh/custom/themes/powerlevel9k - # POWERLEVEL10K git clone --depth=1 https://github.com/romkatv/powerlevel10k.git ${ZSH_CUSTOM:-$HOME/.oh-my-zsh/custom}/themes/powerlevel10k @@ -33,9 +30,16 @@ mkdir -p ~/.local/share/fonts cp Hack\ Regular\ Nerd\ Font\ Complete.ttf ~/.local/share/fonts/ fc-cache -f -v +# Grabs and downloads Go for Google +wget https://golang.org/dl/go1.15.6.linux-amd64.tar.gz +sudo tar -C /usr/local -xzf go1.15.6.linux-amd64.tar.gz + +# Exports the GOPATH +export PATH=$PATH:/usr/local/go/bin + # Install Rust - echo 'install rust' - curl https://sh.rustup.rs -sSf | sh +echo 'install rust' +curl https://sh.rustup.rs -sSf | sh # Fancy ls script taken from github.com/brandonroehl/dotfiles files=( 'vimrc' 'vim' 'zshrc' 'zsh' 'agignore' 'gitconfig' 'gitignore' 'gitmessage' 'gemrc' 'rspec' 'eslintrc' )