aboutsummaryrefslogtreecommitdiff
path: root/powerlevel9k.zsh-theme
Commit message (Collapse)AuthorAgeFilesLines
* speed up node_version and nvm prompts; fixes #12romkatv2019-05-211-31/+123
|
* bug fix: clear bold when drawing the end of a powerlineromkatv2019-05-211-1/+1
|
* truncate_to_unique: respect POWERLEVEL9K_SHORTEN_FOLDER_MARKER with default ↵romkatv2019-05-191-19/+29
| | | | value of (.bzr|CVS|.git|.hg|.svn|.citc)
* append POWERLEVEL9K_SHORTEN_DELIMITER when shortening with ↵romkatv2019-05-191-4/+5
| | | | truncate_to_unique; use * as default in this case
* cleanupromkatv2019-05-191-1/+1
|
* do not shorten the last dir in truncate_to_uniqueromkatv2019-05-191-1/+1
|
* fix bold<->nonbold transitions in dirromkatv2019-05-191-20/+18
|
* cleanupromkatv2019-05-191-4/+4
|
* support multiple markers with ↵romkatv2019-05-191-19/+21
| | | | POWERLEVEL9K_SHORTEN_STRATEGY=truncate_with_folder_marker
* when replacing parts of cwd with "...", make sure there is more than 1 char ↵romkatv2019-05-191-2/+2
| | | | to be replaced
* support dynamic directories in dir prompt and fix a dozen bugsromkatv2019-05-191-263/+176
|
* Fix weird parser errorTobias Wolter2019-05-181-1/+1
| | | If the C is left unquoted, it will result in `$ANTIGEN_PATH/bundles/romkatv/powerlevel10k/powerlevel9k.zsh-theme.antigen-compat:133: parse error: condition expected: $LANG` or something along those lines with a recent zsh version. This fixes that issue.
* simplify right prompt prefix and suffixromkatv2019-05-141-3/+2
|
* ensure that every line of left prompt ends with LEFT_SEGMENT_SEPARATORromkatv2019-05-101-18/+22
|
* use consistent case in warningsromkatv2019-05-081-2/+2
|
* better terminal color mode detectionromkatv2019-05-081-8/+5
|
* add VISUAL mode to vi_moderomkatv2019-05-051-4/+28
|
* bug fix: show previous repo state instead of loading when in a subdir of a ↵romkatv2019-05-011-4/+5
| | | | slow repo
* Merge branch 'test'romkatv2019-04-301-6/+6
|\
| * lower the minimum required zsh version to 5.1romkatv2019-04-301-3/+3
| |
| * replace all -v checks with equivalents (trying to port to zsh 5.2)romkatv2019-04-301-5/+5
| |
* | support true colorromkatv2019-04-301-3/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | In order to use true color with Powerlevel10k you need ZSH >= 5.7 and a terminal that supports true color. Here's how you can check whether you are covered. if autoload -U is-at-least && is-at-least 5.7; then echo "ZSH $ZSH_VERSION: supports true color" else echo "ZSH $ZSH_VERSION: does not support true color" fi if [[ $COLORTERM == (24bit|truecolor) || ${terminfo[colors]} -eq 16777216 ]]; then echo "Terminal supports true color" else echo "Terminal does not support true color" fi To use true color with Powerlevel10k, use `#ffffff` format when specifying colors. POWERLEVEL9K_TIME_FOREGROUND='red' # by name (type `getColorCode foreground` to list all) POWERLEVEL9K_TIME_BACKGROUND='001' # by decimal code (usually 001 to 256) POWERLEVEL9K_TIME_BACKGROUND='#ff0000' # by hex code (#000000 to #ffffff) In order to be able to use the same configuration from a terminal without true color support, add this to your ~/.zshrc: if [[ $COLORTERM != (24bit|truecolor) && ${terminfo[colors]} -ne 16777216 ]]; then zmodload zsh/nearcolor fi When using a true color terminal, `#ffffff` will render as true color. When on an older terminal, it'll render as the closest available color. Neat! Fixes #62.
* | partial rollback of the previous commit: ${(P):-X} is not the same as ↵Roman Perepelitsa2019-04-301-2/+2
|/ | | | ${(P)${:-X}}
* simplify: ${(x)${:-y}} => ${(x):-y}romkatv2019-04-301-12/+12
|
* move zsh version check to the topromkatv2019-04-291-5/+9
|
* call "zle -R" after every "zle reset-prompt"romkatv2019-04-251-3/+3
|
* Add LINUX_RASPBIAN_ICON (Raspberry Pi icon) as an OS_ICON candidateMing Aldrich-Gan2019-04-051-0/+1
|
* Add VCS_LOADING_ICON to the icons mapSam Miller2019-04-021-8/+8
|
* add extra diagnostics for old shellsromkatv2019-03-301-0/+29
|
* Always expand GIT_DIR to absolute pathCaleb Maclennan2019-03-271-4/+4
|
* Obey GIT_DIR if set for vcsh compatabilityCaleb Maclennan2019-03-271-4/+4
|
* print HEAD instead of commit if not available; do not call zle when illegal ↵romkatv2019-03-241-4/+4
| | | | to do so
* add node_version only inside project folder optionMohammed Abdel Ra'ouf2019-03-221-3/+27
|
* don't kill timer when subshells exitromkatv2019-03-221-2/+6
|
* formattingromkatv2019-03-221-2/+2
|
* restore the copyright from the origin of powerlevel9kromkatv2019-03-221-3/+3
|
* fix incoming changes in git promptromkatv2019-03-211-1/+1
|
* stop using typeset when declaring functions; it's stupidromkatv2019-03-211-45/+49
|
* make extended git styling options consistent with the existing styling optionsromkatv2019-03-201-12/+24
|
* simpler ws handling in gitromkatv2019-03-201-20/+10
|
* restore "loading" git statusromkatv2019-03-201-1/+1
|
* support individual styling for all parts of git promptromkatv2019-03-191-36/+88
|
* support segments with multiple text elementsromkatv2019-03-191-142/+142
|
* bail if someone tries to interpet powerlevel9k.zsh-theme with shromkatv2019-03-191-3/+7
|
* get rid of unwanted whitespaces; this time the wanted whitespaces should remainromkatv2019-03-191-5/+7
|
* optimize prompt_contextromkatv2019-03-191-2/+2
|
* Revert "remove superfluous spaces from rprompt; optimize context"romkatv2019-03-191-11/+11
| | | | This reverts commit a97892bc72585063eec4b85717f26b75c97a17e2.
* remove superfluous spaces from rprompt; optimize contextromkatv2019-03-191-11/+11
|
* add caching to simple_dirromkatv2019-03-181-4/+13
|
* bug fix: correctly handle consecutive segments without backgroundromkatv2019-03-181-13/+13
|