From 2a84822cfe9eab505d6dbfc53280ed71eefba123 Mon Sep 17 00:00:00 2001 From: mwiegand Date: Wed, 1 Jun 2022 13:50:20 +0200 Subject: [PATCH] zsh namspacing --- bundles/zsh/files/bw.zsh-theme | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/bundles/zsh/files/bw.zsh-theme b/bundles/zsh/files/bw.zsh-theme index 20c9815..b158614 100644 --- a/bundles/zsh/files/bw.zsh-theme +++ b/bundles/zsh/files/bw.zsh-theme @@ -1,4 +1,4 @@ -function spwd { +function zsh_spwd { paths=(${(s:/:)PWD}) cur_path='/' @@ -21,7 +21,7 @@ function spwd { echo } -function root_color { +function zsh_root_color { if test "$EUID" -eq 0 then echo "%{$fg_bold[green]%}" @@ -30,11 +30,11 @@ function root_color { fi } -function exitcode_color { +function zsh_exitcode_color { echo "%(?:%{$fg_bold[green]%}:%{$fg_bold[red]%})" } -PROMPT='$(root_color)$(whoami)%{$reset_color%}@$(exitcode_color)$(hostname -s) %{$fg[cyan]%}$(spwd)%{$reset_color%} $(git_prompt_info)' +PROMPT='$(zsh_root_color)$(whoami)%{$reset_color%}@$(zsh_exitcode_color)$(hostname -s) %{$fg[cyan]%}$(zsh_spwd)%{$reset_color%} $(git_prompt_info)' ZSH_THEME_GIT_PROMPT_PREFIX="%{$fg_bold[blue]%}git:(%{$fg[red]%}" ZSH_THEME_GIT_PROMPT_SUFFIX="%{$reset_color%} "