dotfiles/.config/fish/config.fish

17 lines
488 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
2024-12-16 18:10:40 +00:00
case kmqg099:
fish_add_path -a /Users/kmqg099/.local/bin
fish_add_path -a /usr/local/opt/node@18/bin
2024-12-15 22:38:45 +00:00
end
# keeping this in the end
zoxide init fish | source
2024-12-15 19:30:46 +00:00
end