From 0f1cd26165de834a08895f06296f2d7744da4e94 Mon Sep 17 00:00:00 2001 From: Rawley Fowler <75388349+rawleyfowler@users.noreply.github.com> Date: Sun, 24 Jul 2022 13:12:25 -0600 Subject: [PATCH] Delete zsh directory --- zsh/.zshrc | 26 -------------------------- 1 file changed, 26 deletions(-) delete mode 100644 zsh/.zshrc diff --git a/zsh/.zshrc b/zsh/.zshrc deleted file mode 100644 index eb9d0c3..0000000 --- a/zsh/.zshrc +++ /dev/null @@ -1,26 +0,0 @@ -#!/bin/zsh -# Rawley Fowler's .zshrc, last edited May 2022 -export ZSH="$HOME/.oh-my-zsh" - -# Configure brew on startup of new machine -if ! type "brew" > /dev/null; then - exec /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install.sh)" -fi - -# Configure git, on startup of new machine -if ! type "git" > /dev/null; then - exec brew install git - git config --global core.excludesfile ~/.gitignore_global -fi - -#Oh my zsh -ZSH_THEME="afowler" -plugins=(git) -source $ZSH/oh-my-zsh.sh - -#PATH -export PATH=$PATH:$HOME/.emacs.d/bin - -[ -f ~/.fzf.zsh ] && source ~/.fzf.zsh - -eval "$(direnv hook zsh)"