From 5279873a2fd57d00608e247733cb410ffd7ff720 Mon Sep 17 00:00:00 2001 From: Jeremy Dormitzer Date: Sun, 10 Apr 2022 14:48:03 -0400 Subject: [PATCH] Also check for manual typewritten prompt installation --- zsh/.zshrc | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/zsh/.zshrc b/zsh/.zshrc index cf16fc7..36bedd2 100644 --- a/zsh/.zshrc +++ b/zsh/.zshrc @@ -10,6 +10,10 @@ if [ -e "$HOME/.zfunctions/prompt_typewritten_setup" ]; then # Set typewritten ZSH as a prompt autoload -U promptinit; promptinit prompt typewritten +elif [ -d "$HOME/.zsh/typewritten" ]; then + fpath+=$HOME/.zsh/typewritten + autoload -U promptinit; promptinit + prompt typewritten else export ZSH_THEME="robbyrussell" fi