From d4f64f84f170f370ec05124f2edd3a65bdb9b571 Mon Sep 17 00:00:00 2001 From: Kyren223 Date: Thu, 4 Dec 2025 17:14:30 +0200 Subject: [PATCH] Add $HOME/bin to path and export WINEDEBUG=-all to prevent wine spamming weird debug stuff when running raddbg (thx Martisn) --- .zshrc | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.zshrc b/.zshrc index 483bb8d..f8f9af0 100644 --- a/.zshrc +++ b/.zshrc @@ -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"