28 lines
650 B
Fish
28 lines
650 B
Fish
if status is-interactive
|
|
# Commands to run in interactive sessions can go here
|
|
end
|
|
|
|
alias ls="ls --color=auto"
|
|
alias grep="grep --color=auto"
|
|
|
|
set -gx PATH /home/red/.config/herd-lite/bin $PATH
|
|
set -x ANDROID_HOME "home/red/Android/Sdk"
|
|
set -x ANDROID_SDK_ROOT "home/red/Android/Sdk"
|
|
|
|
if set -q PHP_INI_SCAN_DIR
|
|
set -gx PHP_INI_SCAN_DIR "/home/red/.config/herd-lite/bin:$PHP_INI_SCAN_DIR"
|
|
else
|
|
set -gx PHP_INI_SCAN_DIR "/home/red/.config/herd-lite/bin"
|
|
end
|
|
|
|
function sail
|
|
if test -f sail
|
|
sh sail $argv
|
|
else
|
|
sh vendor/bin/sail $argv
|
|
end
|
|
end
|
|
|
|
export BUN_INSTALL="$HOME/.bun"
|
|
export PATH="$BUN_INSTALL/bin:$PATH"
|