Add $HOME/bin to path and export WINEDEBUG=-all to prevent wine spamming

weird debug stuff when running raddbg (thx Martisn)
This commit is contained in:
2025-12-04 17:14:30 +02:00
parent 223b0418a8
commit d4f64f84f1

4
.zshrc
View File

@@ -80,6 +80,9 @@ export EDITOR=nvim
export PAGER=less
export MANPAGER=$PAGER
# Stop wine from spamming debug
export WINEDEBUG=-all
# Path
export GOPATH="$HOME/go"
export PATH="$GOPATH/bin:$PATH"
@@ -87,6 +90,7 @@ export PATH="$HOME/scripts:$PATH"
export PATH="$HOME/.zig:$PATH"
export PATH="$HOME/.zls:$PATH"
export PATH="$HOME/projects/k/bin:$PATH"
export PATH="$HOME/bin:$PATH"
# Fzf
export FZF_DEFAULT_COMMAND="fd --hidden --strip-cwd-prefix --exclude .git"