13 lines
261 B
Fish
13 lines
261 B
Fish
# deno config
|
|
set -Ux DENO_INSTALL /home/t31m/.deno
|
|
set -Ux PATH $DENO_INSTALL/bin $PATH
|
|
|
|
# pipx
|
|
if test (command -v pipx)
|
|
register-python-argcomplete --shell fish pipx | .
|
|
end
|
|
|
|
# pyenv init
|
|
if command -v pyenv 1>/dev/null 2>&1
|
|
pyenv init - | source
|
|
end |