23 lines
569 B
Bash
23 lines
569 B
Bash
export ZSH="$HOME/.oh-my-zsh"
|
|
|
|
ZSH_THEME="miepa"
|
|
|
|
plugins=(git)
|
|
|
|
source $ZSH/oh-my-zsh.sh
|
|
|
|
|
|
alias update="brew update && brew upgrade"
|
|
alias cleanup="brew cleanup"
|
|
alias vim="nvim"
|
|
alias runmain="clang++ main.cpp -o main&& ./main"
|
|
|
|
export PATH="$HOME/.local/bin:$PATH"
|
|
export PKG_CONFIG_PATH="/opt/homebrew/lib/pkgconfig:$PKG_CONFIG_PATH" # Add Homebrew pkg-config path
|
|
export PKG_CONFIG_PATH="/opt/homebrew/Cellar/raylib/5.5/lib/pkgconfig:$PKG_CONFIG_PATH"
|
|
|
|
export EDITOR=nvim
|
|
|
|
source /opt/homebrew/share/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh
|
|
|