dotfiles/zsh/.zshrc

27 lines
628 B
Bash
Raw Normal View History

2022-05-20 02:58:08 +02:00
#!/bin/zsh
# Rawley Fowler's .zshrc, last edited May 2022
export ZSH="$HOME/.oh-my-zsh"
2022-05-31 19:04:35 +02:00
# 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
2022-05-20 02:58:08 +02:00
#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
2022-05-31 19:04:35 +02:00
eval "$(direnv hook zsh)"