From c4da5e91d0533b647b9a043e02490f1886c1da0f Mon Sep 17 00:00:00 2001 From: Malfurious Date: Tue, 20 Jul 2021 23:43:04 -0400 Subject: Merge bash/zsh/fish color modes together This commit removes the differences between the supported shells and removes the options: --bash, --fish, and --zsh. I can not produce any problems in any of these shells using a generic form of the text coloring (ie: the one bash was using), so for simplicity I will opt to unify the way colors are handled and remove knowledge of the running shell. Something that _may_ end up being a problem is properly rendering the prompt in different terminal emulators. If this is of concern, it will be dealt with at a later time. Signed-off-by: Malfurious --- prompt.zsh | 11 ----------- 1 file changed, 11 deletions(-) delete mode 100755 prompt.zsh (limited to 'prompt.zsh') diff --git a/prompt.zsh b/prompt.zsh deleted file mode 100755 index 9c812ac..0000000 --- a/prompt.zsh +++ /dev/null @@ -1,11 +0,0 @@ -#!/usr/bin/env zsh - -dot="$(cd "$(dirname "$0")" || exit; pwd)" -source "$dot/sonar-base.sh" - -if is_repo; then - autoload colors && colors - - prepare_zsh_colors - render_prompt -fi -- cgit v1.2.3