From fc90ed02438b24df1b2cefcb63d319e6936311b9 Mon Sep 17 00:00:00 2001 From: quackerd Date: Sun, 21 Feb 2021 00:44:59 -0500 Subject: [PATCH] setup --- setup.sh | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 setup.sh diff --git a/setup.sh b/setup.sh new file mode 100644 index 0000000..c10e1dd --- /dev/null +++ b/setup.sh @@ -0,0 +1,13 @@ +#!/bin/sh + +OZSH_HOME=$HOME/.ozsh + +# clone the repo +git clone https://git.quacker.org/d/ozsh $OZSH_HOME/ + +# pull submodules +git -C $OZSH_HOME/.ozsh submodule update --init --recursive + +# link .zshrc +ln -s $OZSH_HOME/.zshrc $HOME/.zshrc +