15 lines
212 B
Fish
15 lines
212 B
Fish
# Sets Path
|
|
set -gx PATH ~/.local/bin $PATH
|
|
|
|
# Sets aliases
|
|
alias ls='exa -lh'
|
|
alias sudo=doas
|
|
alias push='git push'
|
|
alias pull='git pull'
|
|
|
|
# Sets prompt
|
|
starship init fish | source
|
|
|
|
# Launches uwufetch
|
|
uwufetch
|