Update install
This commit is contained in:
parent
bc05dfd145
commit
35398aac89
1 changed files with 9 additions and 5 deletions
|
|
@ -18,9 +18,6 @@ ssh-keygen -t ed25519 -C "blake@blakeridgway.dev"
|
||||||
# Oh My ZSH is installer
|
# Oh My ZSH is installer
|
||||||
sh -c "$(curl -fsSL https://raw.github.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"
|
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
|
# POWERLEVEL10K
|
||||||
git clone --depth=1 https://github.com/romkatv/powerlevel10k.git ${ZSH_CUSTOM:-$HOME/.oh-my-zsh/custom}/themes/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/
|
cp Hack\ Regular\ Nerd\ Font\ Complete.ttf ~/.local/share/fonts/
|
||||||
fc-cache -f -v
|
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
|
# Install Rust
|
||||||
echo 'install rust'
|
echo 'install rust'
|
||||||
curl https://sh.rustup.rs -sSf | sh
|
curl https://sh.rustup.rs -sSf | sh
|
||||||
|
|
||||||
# Fancy ls script taken from github.com/brandonroehl/dotfiles
|
# Fancy ls script taken from github.com/brandonroehl/dotfiles
|
||||||
files=( 'vimrc' 'vim' 'zshrc' 'zsh' 'agignore' 'gitconfig' 'gitignore' 'gitmessage' 'gemrc' 'rspec' 'eslintrc' )
|
files=( 'vimrc' 'vim' 'zshrc' 'zsh' 'agignore' 'gitconfig' 'gitignore' 'gitmessage' 'gemrc' 'rspec' 'eslintrc' )
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue