From 4a82e0c7ea1a9a8a7da34b24e051324171656e25 Mon Sep 17 00:00:00 2001 From: Alexander Karle Date: Tue, 27 Feb 2018 23:42:10 -0500 Subject: [PATCH] Adding basic setup script for ubuntu --- ubuntu_setup.sh | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 ubuntu_setup.sh diff --git a/ubuntu_setup.sh b/ubuntu_setup.sh new file mode 100644 index 0000000..f66d64a --- /dev/null +++ b/ubuntu_setup.sh @@ -0,0 +1,15 @@ +#! /bin/bash + +# install vim, tmux, zsh +sudo apt-get -y update +sudo apt-get -y upgrade +sudo apt-get -y install vim +sudo apt-get -y install zsh +sudo apt-get -y install tmux + +# zsh setup! +# oh-my-zsh +sh -c "$(curl -fsSL https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh)" + +# zsh-syntax-highlighting +git clone https://github.com/zsh-users/zsh-syntax-highlighting.git ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-syntax-highlighting -- libgit2 0.28.4