zsh namspacing
This commit is contained in:
parent
e62a7781b4
commit
2a84822cfe
1 changed files with 4 additions and 4 deletions
|
@ -1,4 +1,4 @@
|
||||||
function spwd {
|
function zsh_spwd {
|
||||||
paths=(${(s:/:)PWD})
|
paths=(${(s:/:)PWD})
|
||||||
|
|
||||||
cur_path='/'
|
cur_path='/'
|
||||||
|
@ -21,7 +21,7 @@ function spwd {
|
||||||
echo
|
echo
|
||||||
}
|
}
|
||||||
|
|
||||||
function root_color {
|
function zsh_root_color {
|
||||||
if test "$EUID" -eq 0
|
if test "$EUID" -eq 0
|
||||||
then
|
then
|
||||||
echo "%{$fg_bold[green]%}"
|
echo "%{$fg_bold[green]%}"
|
||||||
|
@ -30,11 +30,11 @@ function root_color {
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
function exitcode_color {
|
function zsh_exitcode_color {
|
||||||
echo "%(?:%{$fg_bold[green]%}:%{$fg_bold[red]%})"
|
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_PREFIX="%{$fg_bold[blue]%}git:(%{$fg[red]%}"
|
||||||
ZSH_THEME_GIT_PROMPT_SUFFIX="%{$reset_color%} "
|
ZSH_THEME_GIT_PROMPT_SUFFIX="%{$reset_color%} "
|
||||||
|
|
Loading…
Reference in a new issue