From 48200a879412c7c2af3023758b9e22b81cc2084b Mon Sep 17 00:00:00 2001 From: Triston Armstrong Date: Sun, 10 Nov 2024 12:34:37 -0500 Subject: [PATCH] disable starship --- non_pac.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/non_pac.sh b/non_pac.sh index c3cfc99..1f29707 100755 --- a/non_pac.sh +++ b/non_pac.sh @@ -22,7 +22,8 @@ _install_non_pacman(){ run_non_pac_install(){ echo "########################### Non Pacman #######################" _install_non_pacman "bun" "curl -fsSL https://bun.sh/install | bash;" # no third arg here - _install_non_pacman "starship" "curl -sS https://starship.rs/install.sh | sh" "echo \"eval \$(starship init bash)\" >> ~/.bashrc" + # v--- disabling cause idk what i wanna do with my life atm + #_install_non_pacman "starship" "curl -sS https://starship.rs/install.sh | sh" "echo \"eval \$(starship init bash)\" >> ~/.bashrc" _install_non_pacman "vim-plug" "curl -fLo ~/.vim/autoload/plug.vim --create-dirs https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim" } main;