summaryrefslogtreecommitdiffstats
path: root/prompt
diff options
context:
space:
mode:
Diffstat (limited to '')
-rwxr-xr-xprompt.bash9
-rwxr-xr-xprompt.zsh11
2 files changed, 0 insertions, 20 deletions
diff --git a/prompt.bash b/prompt.bash
deleted file mode 100755
index 07691fb..0000000
--- a/prompt.bash
+++ /dev/null
@@ -1,9 +0,0 @@
-#!/usr/bin/env bash
-
-dot="$(cd "$(dirname "$0")" || exit; pwd)"
-source "$dot/sonar-base.sh"
-
-if is_repo; then
- prepare_bash_colors
- render_prompt
-fi
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