♻️ refactor(fish): install and uninstall functions are now one letter

This commit is contained in:
Sergio Laín 2024-04-28 00:21:39 +02:00
parent ed341d83ad
commit dd966f0785
No known key found for this signature in database
GPG key ID: 14C9B8080681777B
4 changed files with 6 additions and 6 deletions

View file

@ -0,0 +1,3 @@
function i --wraps='yay -S ' --description 'alias i=yay -S '
yay -S $argv
end

View file

@ -1,3 +0,0 @@
function install --wraps='yay -S ' --description 'alias install=yay -S '
yay -S $argv
end

View file

@ -0,0 +1,3 @@
function u --wraps='yay -R ' --description 'alias u=yay -R '
yay -R $argv
end

View file

@ -1,3 +0,0 @@
function uninstall --wraps='yay -R ' --description 'alias uninstall=yay -R '
yay -R $argv
end