Update install

This commit is contained in:
Blake Ridgway 2021-02-22 15:44:04 -06:00 committed by GitHub
parent bc05dfd145
commit 35398aac89
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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' )