aboutsummaryrefslogtreecommitdiff
path: root/powerlevel9k.zsh-theme
diff options
context:
space:
mode:
Diffstat (limited to 'powerlevel9k.zsh-theme')
-rw-r--r--powerlevel9k.zsh-theme20
1 files changed, 10 insertions, 10 deletions
diff --git a/powerlevel9k.zsh-theme b/powerlevel9k.zsh-theme
index 86fc2c42..19a8bbb3 100644
--- a/powerlevel9k.zsh-theme
+++ b/powerlevel9k.zsh-theme
@@ -576,16 +576,6 @@ prompt_context() {
fi
}
-# Vi Mode: show editing mode (NORMAL|INSERT)
-prompt_vi_mode() {
- local mode="${${KEYMAP/vicmd/NORMAL}/(main|viins)/INSERT}"
- if [[ "$mode" == "NORMAL" ]]; then
- $1_prompt_segment "$0_NORMAL" "$DEFAULT_COLOR" "default" "$mode"
- else
- $1_prompt_segment "$0_INSERT" "$DEFAULT_COLOR" "blue" "$mode"
- fi
-}
-
# Dir: current working directory
prompt_dir() {
local current_path='%~'
@@ -821,6 +811,16 @@ prompt_time() {
"$1_prompt_segment" "$0" "$DEFAULT_COLOR_INVERTED" "$DEFAULT_COLOR" "$time_format"
}
+# Vi Mode: show editing mode (NORMAL|INSERT)
+prompt_vi_mode() {
+ local mode="${${KEYMAP/vicmd/NORMAL}/(main|viins)/INSERT}"
+ if [[ "$mode" == "NORMAL" ]]; then
+ "$1_prompt_segment" "$0_NORMAL" "$DEFAULT_COLOR" "default" "$mode"
+ else
+ "$1_prompt_segment" "$0_INSERT" "$DEFAULT_COLOR" "blue" "$mode"
+ fi
+}
+
# Virtualenv: current working virtualenv
# More information on virtualenv (Python):
# https://virtualenv.pypa.io/en/latest/