Created
May 18, 2020 07:29
-
-
Save jarnaldich/db20e232360df88f8dd98a723a24f0df to your computer and use it in GitHub Desktop.
Install new Ubuntu machine for work
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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