i use arch btw
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

use fish_add_path --path instead of --global

--path modifies $PATH directly, and $PATH is already a global. This way the universal $fish_user_paths stays intact.

+3 -5
+3 -5
fish/.config/fish/config.fish
··· 5 5 exit 6 6 end 7 7 8 - fish_add_path -g $HOME/.local/bin 8 + fish_add_path -P $HOME/.local/bin 9 9 10 10 if test -e /opt/homebrew/bin/brew 11 11 eval (/opt/homebrew/bin/brew shellenv) ··· 20 20 if command -q brew 21 21 set brew_prefix (brew --prefix) 22 22 set -agx PKG_CONFIG_PATH $brew_prefix/opt/*/lib/pkgconfig 23 - fish_add_path -g $brew_prefix/opt/glibc/{,s}bin 23 + fish_add_path -P $brew_prefix/opt/glibc/{,s}bin 24 24 end 25 25 26 26 if string match -q -- "*microsoft*" (uname -a) ··· 46 46 #set -gx HOMEBREW_CORE_GIT_REMOTE "https://github.com/gromgit/homebrew-core-mojave" 47 47 set -gx HOMEBREW_TEMP /Volumes/T7/homebrew/tmp 48 48 49 - fish_add_path -g /Applications/CLion.app/Contents/bin/gdb/mac/bin 50 - else # linux 51 - end 49 + fish_add_path -P /Applications/CLion.app/Contents/bin/gdb/mac/bin 52 50 end 53 51 54 52 type -q mise && mise activate fish | source