dotfiles

$HOME is where the <3 is
git clone git://git.alexkarle.com/dotfiles.git
Log | Files | Refs | Submodules | README

commit 4a82e0c7ea1a9a8a7da34b24e051324171656e25 (patch)
parent 4225f81c2c189a9ddfc72b9a2018f3ae986e6e88
Author: Alexander Karle <akarle@umass.edu>
Date:   Tue, 27 Feb 2018 23:42:10 -0500

Adding basic setup script for ubuntu

Diffstat:
Aubuntu_setup.sh | 15+++++++++++++++
1 file changed, 15 insertions(+), 0 deletions(-)

diff --git a/ubuntu_setup.sh 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