Skip to content

Instantly share code, notes, and snippets.

@jarnaldich
Created May 18, 2020 07:29
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 jarnaldich/db20e232360df88f8dd98a723a24f0df to your computer and use it in GitHub Desktop.
Save jarnaldich/db20e232360df88f8dd98a723a24f0df to your computer and use it in GitHub Desktop.
Install new Ubuntu machine for work
# Check version
lsb_release -a
# Install zsh oh my zsh...
sudo apt install zsh
sudo apt-get install powerline fonts-powerline
git clone https://github.com/robbyrussell/oh-my-zsh.git ~/.oh-my-zsh
cp ~/.oh-my-zsh/templates/zshrc.zsh-template ~/.zshrc
git clone https://github.com/zsh-users/zsh-syntax-highlighting.git "$HOME/.zsh-syntax-highlighting" --depth 1
echo "source $HOME/.zsh-syntax-highlighting/zsh-syntax-highlighting.zsh" >> "$HOME/.zshrc"
# XXX: edit .zshrc
# ZSH_THEME="agnoster"
chsh -s /bin/zsh
# Install neovim with spacevim
sudo apt-get install neovim
curl -sLf https://spacevim.org/install.sh | bash
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment