-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathminimal.zsh-theme
More file actions
52 lines (43 loc) · 1.77 KB
/
minimal.zsh-theme
File metadata and controls
52 lines (43 loc) · 1.77 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
# vim:et sts=2 sw=2 ft=zsh
#
# Original minimal theme for zsh written by subnixr:
# https://github.com/subnixr/minimal
#
# Requires the `prompt-pwd` and `git-info` zmodules to be included in the .zimrc file.
# Global settings
if (( ! ${+MNML_OK_COLOR} )) typeset -g MNML_OK_COLOR=green
if (( ! ${+MNML_ERR_COLOR} )) typeset -g MNML_ERR_COLOR=red
if (( ! ${+MNML_BGJOB_MODE} )) typeset -g MNML_BGJOB_MODE=4
if (( ! ${+MNML_USER_CHAR} )) typeset -g MNML_USER_CHAR=λ
if (( ! ${+MNML_INSERT_CHAR} )) typeset -g MNML_INSERT_CHAR=›
if (( ! ${+MNML_NORMAL_CHAR} )) typeset -g MNML_NORMAL_CHAR=·
# Components
_prompt_mnml_keymap() {
case ${KEYMAP} in
vicmd) print -n -- ${MNML_NORMAL_CHAR} ;;
*) print -n -- ${MNML_INSERT_CHAR} ;;
esac
}
if (( ! ${+functions[_prompt_mnml_keymap_select]} )); then
functions[_prompt_mnml_keymap_select]=${widgets[zle-keymap-select]#user:}'
zle reset-prompt
zle -R'
zle -N zle-keymap-select _prompt_mnml_keymap_select
fi
# Setup
typeset -g VIRTUAL_ENV_DISABLE_PROMPT=1
setopt nopromptbang prompt{cr,percent,sp,subst}
zstyle ':zim:prompt-pwd:tail' length 2
zstyle ':zim:prompt-pwd:separator' format '%f/%F{244}'
typeset -gA git_info
if (( ${+functions[git-info]} )); then
zstyle ':zim:git-info:branch' format '%b'
zstyle ':zim:git-info:commit' format 'HEAD'
zstyle ':zim:git-info:clean' format '%F{${MNML_OK_COLOR}}'
zstyle ':zim:git-info:dirty' format '%F{${MNML_ERR_COLOR}}'
zstyle ':zim:git-info:keys' format \
'rprompt' ' %C%D%b%c'
autoload -Uz add-zsh-hook && add-zsh-hook precmd git-info
fi
PS1=$'${SSH_TTY:+"%m "}${VIRTUAL_ENV:+"${VIRTUAL_ENV:t} "}%(1j.%{\E[${MNML_BGJOB_MODE}m%}.)%F{%(?.${MNML_OK_COLOR}.${MNML_ERR_COLOR})}%(!.#.${MNML_USER_CHAR})%f%{\E[0m%} $(_prompt_mnml_keymap) '
RPS1='%F{244}$(prompt-pwd)${(e)git_info[rprompt]}%f'