diff options
author | romkatv <roman.perepelitsa@gmail.com> | 2020-01-26 22:26:09 +0300 |
---|---|---|
committer | romkatv <roman.perepelitsa@gmail.com> | 2020-01-26 22:26:09 +0300 |
commit | a5cafefa4044c5b1f713e2313e6b0d6314b7c713 (patch) | |
tree | 86ea3af2b2a2e15fe64e295dc1e6340cfded3d21 /config/p10k-rainbow.zsh | |
parent | 12e0d2e7e81e62441525091347bc8cff488d022a (diff) |
truncate timewarrior task names
Diffstat (limited to 'config/p10k-rainbow.zsh')
-rw-r--r-- | config/p10k-rainbow.zsh | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/config/p10k-rainbow.zsh b/config/p10k-rainbow.zsh index 04a44684..24fff870 100644 --- a/config/p10k-rainbow.zsh +++ b/config/p10k-rainbow.zsh @@ -641,6 +641,12 @@ # typeset -g POWERLEVEL9K_TIMEWARRIOR_FOREGROUND=255 # typeset -g POWERLEVEL9K_TIMEWARRIOR_BACKGROUND=8 + # If the tracked task is longer than 24 characters, truncate and append "…". + # Tip: To always display tasks without truncation, delete the following parameter. + # Tip: To hide task names and display just the icon when time tracking is enabled, set the + # value of the following parameter to "". + typeset -g POWERLEVEL9K_TIMEWARRIOR_CONTENT_EXPANSION='${P9K_CONTENT:0:24}${${P9K_CONTENT:24}:+…}' + # Custom icon. # typeset -g POWERLEVEL9K_TIMEWARRIOR_VISUAL_IDENTIFIER_EXPANSION='⭐' |