dotfiles/.config/fish/config.fish
2025-01-10 14:27:25 +01:00

19 lines
581 B
Fish

if status is-interactive
set -Ux PYENV_ROOT $HOME/.pyenv
fish_add_path -p $PYENV_ROOT/shims
switch (whoami)
# Corporate machine
case Ivan_Golikov
fish_add_path -p /usr/local/opt/libpq/bin
fish_add_path -a /Users/Ivan_Golikov/Projects/Scripts/bin
fish_add_path -a /Users/Ivan_Golikov/.local/bin
fish_add_path -a /Users/Ivan_Golikov/Library/Python/3.11/bin
case kmqg099:
fish_add_path -a /Users/kmqg099/.local/bin
fish_add_path -a /usr/local/opt/node@18/bin
end
fzf --fish | source
# keeping this in the end
zoxide init fish | source
end