diff options
author | romkatv <roman.perepelitsa@gmail.com> | 2020-01-30 10:25:24 +0300 |
---|---|---|
committer | romkatv <roman.perepelitsa@gmail.com> | 2020-01-30 10:25:24 +0300 |
commit | 73878f398ac5ba73ff858e215b0045bf41d493c4 (patch) | |
tree | 8511853177277e38683cf5c89cbfb2cd549d8720 /internal | |
parent | 0a4b832b25b4c7f4525a3558dfe73501f4c3b8bd (diff) |
add nix_shell prompt segment; see #448
Diffstat (limited to 'internal')
-rw-r--r-- | internal/icons.zsh | 5 | ||||
-rw-r--r-- | internal/p10k.zsh | 14 |
2 files changed, 18 insertions, 1 deletions
diff --git a/internal/icons.zsh b/internal/icons.zsh index a96b747c..1c1bb0ee 100644 --- a/internal/icons.zsh +++ b/internal/icons.zsh @@ -124,6 +124,7 @@ function _p9k_init_icons() { PERL_ICON 'perl' NNN_ICON 'nnn' TIMEWARRIOR_ICON 'tw' + NIX_SHELL_ICON 'nix' ) ;; 'awesome-fontconfig') @@ -235,6 +236,7 @@ function _p9k_init_icons() { PERL_ICON 'perl' NNN_ICON 'nnn' TIMEWARRIOR_ICON 'tw' + NIX_SHELL_ICON 'nix' ) ;; 'awesome-mapped-fontconfig') @@ -350,6 +352,7 @@ function _p9k_init_icons() { PERL_ICON 'perl' NNN_ICON 'nnn' TIMEWARRIOR_ICON 'tw' + NIX_SHELL_ICON 'nix' ) ;; 'nerdfont-complete'|'nerdfont-fontconfig') @@ -462,6 +465,7 @@ function _p9k_init_icons() { PERL_ICON '\uE769' # NNN_ICON 'nnn' TIMEWARRIOR_ICON '\uF132' # + NIX_SHELL_ICON '\uF313' # ) ;; *) @@ -573,6 +577,7 @@ function _p9k_init_icons() { PERL_ICON 'perl' NNN_ICON 'nnn' TIMEWARRIOR_ICON 'tw' + NIX_SHELL_ICON 'nix' ) ;; esac diff --git a/internal/p10k.zsh b/internal/p10k.zsh index a2c3f756..ce85b43b 100644 --- a/internal/p10k.zsh +++ b/internal/p10k.zsh @@ -4289,6 +4289,18 @@ function instant_prompt_vim_shell() { _p9k_prompt_segment prompt_vim_shell green $_p9k_color1 VIM_ICON 0 '$VIMRUNTIME' '' } +function prompt_nix_shell() { + _p9k_prompt_segment $0 4 $_p9k_color1 NIX_SHELL_ICON 0 '' "${(M)IN_NIX_SHELL:#(pure|impure)}" +} + +_p9k_prompt_nix_shell_init() { + typeset -g "_p9k__segment_cond_${_p9k_prompt_side}[_p9k_segment_index]"='${IN_NIX_SHELL:#0}' +} + +function instant_prompt_nix_shell() { + _p9k_prompt_segment prompt_nix_shell 4 $_p9k_color1 NIX_SHELL_ICON 1 '${IN_NIX_SHELL:#0}' '${(M)IN_NIX_SHELL:#(pure|impure)}' +} + function prompt_terraform() { local ws=default if [[ -n $TF_WORKSPACE ]]; then @@ -6441,7 +6453,7 @@ _p9k_must_init() { [[ $sig == $_p9k__param_sig ]] && return 1 _p9k_deinit fi - _p9k__param_pat=$'v30\1'${ZSH_VERSION}$'\1'${ZSH_PATCHLEVEL}$'\1' + _p9k__param_pat=$'v31\1'${ZSH_VERSION}$'\1'${ZSH_PATCHLEVEL}$'\1' _p9k__param_pat+=$'${#parameters[(I)POWERLEVEL9K_*]}\1${(%):-%n%#}\1$GITSTATUS_LOG_LEVEL\1' _p9k__param_pat+=$'$GITSTATUS_ENABLE_LOGGING\1$GITSTATUS_DAEMON\1$GITSTATUS_NUM_THREADS\1' _p9k__param_pat+=$'$DEFAULT_USER\1${ZLE_RPROMPT_INDENT:-1}\1$P9K_SSH\1$__p9k_ksh_arrays' |