13 lines
232 B
Fish
13 lines
232 B
Fish
if status is-interactive
|
|
# commands to run in interactive sessions can go here
|
|
#
|
|
|
|
# better file listing
|
|
alias ll "ls -lah"
|
|
|
|
# set the node version
|
|
nvm use latest &> /dev/null
|
|
end
|
|
|
|
starship init fish | source
|