12 lines
267 B
Fish
12 lines
267 B
Fish
function ls --description 'alias ls to eza if possible'
|
|
if type -q eza
|
|
eza -la --icons $argv
|
|
else
|
|
command ls -la $argv
|
|
end
|
|
end
|
|
|
|
abbr -a port 'sudo ss -tulnp | grep'
|
|
abbr -a process 'ps aux | grep'
|
|
|
|
alias dotu='cd $HOME/.flinty && git pull' |