⚰ refactor(fish): Remove unneeded up func

This commit is contained in:
punkfairie 2024-04-15 12:51:29 -07:00
parent ecd6503adb
commit 765665afb6
No known key found for this signature in database
GPG key ID: 284B78B49C058673

View file

@ -1,28 +0,0 @@
function up --description "Update everything except pacman/yay"
cd $HOME || exit 1
if type -q brew
set_color magenta && echo Homebrew && set_color normal
brew update && brew upgrade
end
if type -q npm
set_color magenta && echo npm && set_color normal
npm up -g
end
if type -q tmux
set_color magenta && echo tmux && set_color normal
tmux_up
end
if type -q fish_update_completions
set_color magenta && echo "fish completions" && set_color normal
fish_update_completions
end
if type -q fisher
set_color magenta && echo fisher && set_color normal
fisher update
end
end