15 lines
360 B
Fish
15 lines
360 B
Fish
if status is-interactive
|
|
# Commands to run in interactive sessions can go here
|
|
end
|
|
|
|
set fish_greeting ""
|
|
|
|
set Profile_PATH $HOME/My/profiles
|
|
if test -e $Profile_PATH/shell/aliases.sh
|
|
. $Profile_PATH/shell/aliases.sh
|
|
end
|
|
|
|
# PATH
|
|
# ----------------------------
|
|
set -U fish_user_paths $HOME/bin/ $HOME/go/bin/ $HOME/.local/share/JetBrains/Toolbox/scripts
|