From ceb16c9f5099bc7e92c0bf1db23112dd43f90204 Mon Sep 17 00:00:00 2001 From: Rob Watson <rob@netflux.io> Date: Sat, 26 Apr 2025 07:36:28 +0200 Subject: [PATCH] chore(zsh): update Linux paths --- zshrc | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/zshrc b/zshrc index 198cad0..d949281 100644 --- a/zshrc +++ b/zshrc @@ -173,6 +173,9 @@ if [ "$(uname -s)" = "Darwin" ]; then export PATH="/opt/homebrew/opt/curl/bin:$PATH" fi export PATH="/Applications/Postgres.app/Contents/Versions/16/bin:$PATH" +else # Linux + # bcc-tools: pacman -S bcc bcc-tools python-bcc linux-headers + export PATH="/usr/share/bcc/tools:$PATH" fi export PATH=$HOME/go/bin:$PATH @@ -181,6 +184,7 @@ export PATH=$HOME/local/bin:$PATH export PATH=$HOME/bin:$PATH export PATH=$HOME/.local/bin:$PATH export PATH=$HOME/script:$PATH +export PATH=/home/linuxbrew/.linuxbrew/bin:$PATH export VIMPLUGIN="$HOME/.vim/pack/git-plugins"