dotfiles/.config/fish/config.fish

14 lines
377 B
Fish
Raw Normal View History

2024-12-15 19:30:46 +00:00
if status is-interactive
2024-12-15 22:38:45 +00:00
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
end
# keeping this in the end
zoxide init fish | source
2024-12-15 19:30:46 +00:00
end