Use global instead of universal fish_user_paths
This commit is contained in:
parent
33b57302a9
commit
300fd1b732
3 changed files with 7 additions and 10 deletions
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
set -Ux GOPATH $HOME/.go
|
set -Ux GOPATH $HOME/.go
|
||||||
|
|
||||||
set -U fish_user_paths \
|
set -g fish_user_paths \
|
||||||
$HOME/.go \
|
$HOME/.go \
|
||||||
$GOPATH/bin \
|
$GOPATH/bin \
|
||||||
$DOTFILES_PATH/common/bin \
|
$DOTFILES_PATH/common/bin \
|
||||||
|
@ -13,14 +13,14 @@ set -U fish_user_paths \
|
||||||
$HOME/.netlify/helper/bin
|
$HOME/.netlify/helper/bin
|
||||||
|
|
||||||
for d in $ENV_PATH/*/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
|
end
|
||||||
|
|
||||||
test -d $HOME/.local/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 -Ua 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 python && set -ga 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 ruby && set -ga fish_user_paths (ruby -e 'print Gem.user_dir')/bin
|
||||||
|
|
||||||
if set -q NICE_HOME
|
if set -q NICE_HOME
|
||||||
else
|
else
|
||||||
|
|
|
@ -1,6 +1,3 @@
|
||||||
[push]
|
|
||||||
default = current
|
|
||||||
|
|
||||||
[user]
|
[user]
|
||||||
name = Daniel Flanagan
|
name = Daniel Flanagan
|
||||||
email = daniel@lyte.dev
|
email = daniel@lyte.dev
|
||||||
|
|
|
@ -1,2 +1,2 @@
|
||||||
set e $argv[1]
|
set e $argv[1]
|
||||||
set -Ua fish_user_paths $e/bin
|
set -ga fish_user_paths $e/bin
|
||||||
|
|
Reference in a new issue