summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* speed up nodeenv promptromkatv2019-05-211-1/+2
|
* speed up go_version promptromkatv2019-05-211-5/+8
|
* 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-192-4/+7
| | | | 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
|
* save a fork in docker commandromkatv2019-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-192-355/+176
|
* Merge pull request #70 from towo/fix/lang-conditionalRoman Perepelitsa2019-05-181-1/+1
|\ | | | | Work around an unknown bug (most likely in antigen)
| * 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
|
* force icon initialization if print_icon is called manuallyromkatv2019-05-091-0/+7
|
* use consistent case in warningsromkatv2019-05-081-2/+2
|
* better terminal color mode detectionromkatv2019-05-081-8/+5
|
* pull upstream changes from gitstatusromkatv2019-05-061-2/+7
|
* add VISUAL mode to vi_moderomkatv2019-05-051-4/+28
|
* pull upstream changes from gitstatusromkatv2019-05-041-10/+49
|
* pull upstream changes from gitstatusromkatv2019-05-031-2/+2
|
* pull upstream changes from gitstatusromkatv2019-05-031-1/+2
|
* pull upstream changes from gitstatusromkatv2019-05-031-17/+64
|
* pull upstream changes from gitstatusromkatv2019-05-011-4/+5
|
* pull upstream changes from gitstatusromkatv2019-05-011-5/+4
|
* pull upstream changes from gitstatusromkatv2019-05-014-0/+0
|
* bug fix: show previous repo state instead of loading when in a subdir of a ↵romkatv2019-05-011-4/+5
| | | | slow repo
* pull upstream changes from gitstatusromkatv2019-05-011-0/+2
|
* Merge branch 'test'romkatv2019-04-304-10/+13
|\
| * lower the minimum required zsh version to 5.1romkatv2019-04-302-4/+7
| |
| * replace all -v checks with equivalents (trying to port to zsh 5.2)romkatv2019-04-303-8/+8
| |
* | pull upstream changes from gitstatusromkatv2019-04-301-3/+3
| |
* | 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
|
* pull upstream changes from gitstatusromkatv2019-04-285-36/+78
|
* call "zle -R" after every "zle reset-prompt"romkatv2019-04-251-3/+3
|
* protect set_default from user-defined optionsromkatv2019-04-221-0/+1
|
* pull upstream changes from gitstatusromkatv2019-04-111-0/+1
|
* pull upstream changes from gitstatusromkatv2019-04-104-0/+0
|
* pull upstream changes from gitstatusromkatv2019-04-091-4/+7
|
* pull upstream changes from gitstatusromkatv2019-04-094-0/+0
|
* pull upstream changes from gitstatusromkatv2019-04-084-0/+0
|
* pull upstream changes from gitstatusromkatv2019-04-084-0/+0
|
* Merge pull request #50 from mingaldrichgan/raspbianRoman Perepelitsa2019-04-052-0/+6
|\ | | | | Add LINUX_RASPBIAN_ICON (Raspberry Pi icon) as an OS_ICON candidate