Skip to content

Commit

Permalink
-
Browse files Browse the repository at this point in the history
  • Loading branch information
nnyyxxxx committed Sep 11, 2024
1 parent 446483b commit 6e868a5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/commands/applications-setup/mybash-setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ cloneMyBash() {
}

installDepend() {
printf "%b\n" "${YELLOW}Install mybash if not already installed${RC}"
echo "Install mybash if not already installed"
case "$PACKAGER" in
pacman)
$ESCALATION_TOOL "$PACKAGER" -S --needed --noconfirm bash bash-completion tar bat tree unzip fontconfig
Expand All @@ -25,7 +25,7 @@ installDepend() {
$ESCALATION_TOOL "$PACKAGER" install -y bash bash-completion tar bat tree unzip fontconfig
;;
*)
printf "%b\n" "${RED}Unsupported package manager: $PACKAGER${RC}"
printf "%b\n" "${RED}Unsupported package manager: $PACKAGER${RC}" # The packages above were grabbed out of the original mybash-setup-script.
exit 1
;;
esac
Expand Down
4 changes: 2 additions & 2 deletions src/commands/applications-setup/neovim-setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ cloneNeovim() {
}

setupNeovim() {
echo "Setting up Neovim if not already installed"
echo "Install Neovim if not already installed"
case "$PACKAGER" in
pacman)
$ESCALATION_TOOL "$PACKAGER" -S --needed --noconfirm neovim ripgrep fzf python-virtualenv luarocks go shellcheck
Expand All @@ -25,7 +25,7 @@ setupNeovim() {
$ESCALATION_TOOL "$PACKAGER" install -y neovim ripgrep fzf python3-virtualenv luarocks golang ShellCheck
;;
*)
printf "%b\n" "${RED}Unsupported package manager: $PACKAGER${RC}"
printf "%b\n" "${RED}Unsupported package manager: $PACKAGER${RC}" # The packages above were grabbed out of the original nvim-setup-script.
exit 1
;;
esac
Expand Down

0 comments on commit 6e868a5

Please sign in to comment.