From 2e8b81cbdd535d3749c08c47fc8efcc659776a5a Mon Sep 17 00:00:00 2001 From: Marcus Noble Date: Mon, 7 Sep 2020 07:44:01 +0000 Subject: [PATCH] Add '.zshrc' --- .zshrc | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .zshrc diff --git a/.zshrc b/.zshrc new file mode 100644 index 0000000..c8b176d --- /dev/null +++ b/.zshrc @@ -0,0 +1,16 @@ +# pre-reqs +if [ ! -f ~/.shell-prereqs-installed ]; +then + echo "Installing prereqs" + which brew > /dev/null || bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install.sh)" + brew list --cask homebrew/cask-fonts/font-open-dyslexic-nerd-font > /dev/null || brew install homebrew/cask-fonts/font-open-dyslexic-nerd-font + which starship > /dev/null || brew install starship + + touch ~/.shell-prereqs-installed +fi + +for filename in ~/.dotfiles/*; do + source $filename +done + +eval "$(starship init zsh)"