dotfiles/.config/fish/config.fish

23 lines
534 B
Fish
Raw Normal View History

2021-04-16 05:11:09 +00:00
source ~/.aliases
2021-07-27 13:38:42 +00:00
# Environment variables
# ~/.exportenvs.fish is generated by ~/dotscripts/gen/fish-exportenvs
if test -f ~/.exportenvs.fish
source ~/.exportenvs.fish
end
if test -f ~/.config/fish/config_local.fish
source ~/.config/fish/config_local.fish
end
2021-09-20 03:40:40 +00:00
# TODO: migrate .addpath and .exportenvs to direnv :D
if command -sq direnv > /dev/null
direnv hook fish | source
end
2022-02-06 13:32:56 +00:00
if command -sq pyenv > /dev/null
status is-login; and pyenv init --path | source
status is-interactive; and pyenv init - | source
end