From 765665afb6ec05ef25a5be97104c0192ac0f4f9b Mon Sep 17 00:00:00 2001 From: punkfairie <23287005+punkfairie@users.noreply.github.com> Date: Mon, 15 Apr 2024 12:51:29 -0700 Subject: [PATCH] =?UTF-8?q?=E2=9A=B0=20refactor(fish):=20Remove=20unneeded?= =?UTF-8?q?=20up=20func?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- dot_config/fish/functions/up.fish | 28 ---------------------------- 1 file changed, 28 deletions(-) delete mode 100644 dot_config/fish/functions/up.fish diff --git a/dot_config/fish/functions/up.fish b/dot_config/fish/functions/up.fish deleted file mode 100644 index 9e83a5b..0000000 --- a/dot_config/fish/functions/up.fish +++ /dev/null @@ -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