Skip to content

Instantly share code, notes, and snippets.

@lukehinds
Last active March 25, 2022 14:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lukehinds/a21912ce9d2bf24172cd180449aa0c92 to your computer and use it in GitHub Desktop.
Save lukehinds/a21912ce9d2bf24172cd180449aa0c92 to your computer and use it in GitHub Desktop.
#!/bin/bash
echo -e "Installing vim, zsh, wget and git\n"
sudo yum install vim-enhanced zsh wget git -y
echo -e "Grabbing .vimrc and .zshrc\n"
wget https://gist.githubusercontent.com/lukehinds/a4cd9b82e65d06e4771beb7a5322a36e/raw/278d1e00b6a6ac8c1f1368e415e0f9658307fff8/.vimrc
wget https://gist.githubusercontent.com/lukehinds/e3e6022f5ab604a80fa435242f9c047d/raw/facfbe87cbb1a8c5f940d44d250c25678c2df9e1/.zshrc
echo -e "Installing oh-my-zsh, powerlevel9k & auto-suggestions\n"
sh -c "$(wget https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh -O -)"
git clone https://github.com/bhilburn/powerlevel9k.git ~/.oh-my-zsh/custom/themes/powerlevel9k
git clone https://github.com/zsh-users/zsh-autosuggestions ~/.oh-my-zsh/plugins/zsh-autosuggestions
vim /dev/null
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment