23 lines
752 B
Plaintext
23 lines
752 B
Plaintext
# Sets the useable path
|
|
export PATH=$PATH:/usr/local/opt/openjdk@17/bin:/usr/local/opt/curl/bin:/usr/local/opt/unzip/bin:/Users/fucker/.spicetify:/usr/local/pspdev/bin
|
|
export LDFLAGS="-L/usr/local/opt/curl/lib"
|
|
export CPPFLAGS="-I/usr/local/opt/curl/include -I/usr/local/opt/openjdk@17/include"
|
|
export PKG_CONFIG_PATH="/usr/local/opt/curl/lib/pkgconfig"
|
|
|
|
# Sets aliases
|
|
alias ls='exa -lh'
|
|
alias pull='git pull'
|
|
alias push='git push'
|
|
|
|
# Enables autosuggestions
|
|
source /usr/local/share/zsh-autosuggestions/zsh-autosuggestions.zsh
|
|
|
|
# Enables syntax highlighting
|
|
source /usr/local/share/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh
|
|
|
|
# Sets the prompt
|
|
source <(/usr/local/bin/starship init zsh --print-full-init)
|
|
|
|
# Starts uwufetch at start
|
|
uwufetch
|