Use global instead of universal fish_user_paths

This commit is contained in:
Daniel Flanagan 2021-05-14 15:09:51 -05:00
parent 33b57302a9
commit 300fd1b732
Signed by: lytedev
GPG Key ID: 5B2020A0F9921EF4
3 changed files with 7 additions and 10 deletions

View File

@ -2,7 +2,7 @@
set -Ux GOPATH $HOME/.go
set -U fish_user_paths \
set -g fish_user_paths \
$HOME/.go \
$GOPATH/bin \
$DOTFILES_PATH/common/bin \
@ -13,14 +13,14 @@ set -U fish_user_paths \
$HOME/.netlify/helper/bin
for d in $ENV_PATH/*/bin
test -d $d && set -Ua fish_user_paths $d
test -d $d && set -ga fish_user_paths $d
end
test -d $HOME/.local/bin && set -Ua fish_user_paths $HOME/.local/bin
test -d $HOME/.bin && set -Ua fish_user_paths $HOME/.local/bin
test -d $HOME/.local/bin && set -ga fish_user_paths $HOME/.local/bin
test -d $HOME/.bin && set -ga fish_user_paths $HOME/.local/bin
has_command python && set -Ua fish_user_paths (python -m site --user-base)/bin
has_command ruby && set -Ua fish_user_paths (ruby -e 'print Gem.user_dir')/bin
has_command python && set -ga fish_user_paths (python -m site --user-base)/bin
has_command ruby && set -ga fish_user_paths (ruby -e 'print Gem.user_dir')/bin
if set -q NICE_HOME
else

View File

@ -1,6 +1,3 @@
[push]
default = current
[user]
name = Daniel Flanagan
email = daniel@lyte.dev

View File

@ -1,2 +1,2 @@
set e $argv[1]
set -Ua fish_user_paths $e/bin
set -ga fish_user_paths $e/bin