From 83d74d8bcdff2db6ef1259b5d9e0072f982384f9 Mon Sep 17 00:00:00 2001 From: madumlao Date: Mon, 19 Apr 2021 08:46:46 +0800 Subject: [PATCH] Also install zsh and friends --- install.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/install.sh b/install.sh index af25a90..ac95cd7 100755 --- a/install.sh +++ b/install.sh @@ -3,6 +3,9 @@ APP_DIR="$(dirname "$0")" cd "$APP_DIR" APP_DIR="$(pwd)" +echo "Install zsh and friends" +sudo apt install zsh command-not-found + echo "Install oh-my-zsh and plugins" if ! [ -d .oh-my-zsh ]; then git clone https://github.com/ohmyzsh/ohmyzsh "$HOME/.oh-my-zsh"