12 lines
266 B
Fish
12 lines
266 B
Fish
set -U fish_greeting
|
|
|
|
if status is-interactive
|
|
# Commands to run in interactive sessions can go here
|
|
|
|
# Aliases
|
|
alias cat="bat"
|
|
alias ls="eza --group-directories-first -x"
|
|
|
|
# Load prompt (KEEP THIS AT THE END)
|
|
starship init fish | source
|
|
end
|