Instead of keeping an entire fork of oh-my-zsh
just for some personal configuration, I moved everything here.
To install, make sure you install oh-my-zsh
:
sudo apt-get update
sudo apt-get install zsh git
sh -c "$(wget https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh -O -)"
And then install this and other custom plugins
cd ~/.oh-my-zsh
rm -rf custom
git clone https://github.com/shlomiv/zsh-custom.git custom
cd custom/plugins
git clone https://github.com/zsh-users/zsh-autosuggestions.git
git clone https://github.com/zsh-users/zsh-syntax-highlighting.git
ln -sf ~/.oh-my-zsh/custom/.zshrc ~/.zshrc
git clone --depth 1 https://github.com/junegunn/fzf.git ~/.fzf
~/.fzf/install --key-bindings --completions --update-rc
Just for completness, here is how to set up java and lein
mkdir ~/bin
cd ~/bin
wget https://raw.githubusercontent.com/technomancy/leiningen/stable/bin/lein
sudo chmod a+x lein
sudo apt-get install openjdk-8-jdk -y
lein