Lazy #1

Merged
DashieTM merged 38 commits from lazy into main 2023-03-08 10:38:05 +01:00
Showing only changes of commit 782030a5c3 - Show all commits

View file

@ -6,7 +6,14 @@ end
# Utility functions for zoxide. # Utility functions for zoxide.
# #
set fish_greeting set fish_greeting
function sudo --description "Replacement for Bash 'sudo !!' command to run last command using sudo."
if test "$argv" = !!
echo sudo $history[1]
eval command sudo $history[1]
else
command sudo $argv
end
end
alias ls='lsd' alias ls='lsd'
alias :q='exit' alias :q='exit'
alias gh='git push origin' alias gh='git push origin'