Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | force icon initialization if print_icon is called manually | romkatv | 2019-05-09 | 1 | -0/+7 |
| | |||||
* | use consistent case in warnings | romkatv | 2019-05-08 | 1 | -2/+2 |
| | |||||
* | better terminal color mode detection | romkatv | 2019-05-08 | 1 | -8/+5 |
| | |||||
* | pull upstream changes from gitstatus | romkatv | 2019-05-06 | 1 | -2/+7 |
| | |||||
* | add VISUAL mode to vi_mode | romkatv | 2019-05-05 | 1 | -4/+28 |
| | |||||
* | pull upstream changes from gitstatus | romkatv | 2019-05-04 | 1 | -10/+49 |
| | |||||
* | pull upstream changes from gitstatus | romkatv | 2019-05-03 | 1 | -2/+2 |
| | |||||
* | pull upstream changes from gitstatus | romkatv | 2019-05-03 | 1 | -1/+2 |
| | |||||
* | pull upstream changes from gitstatus | romkatv | 2019-05-03 | 1 | -17/+64 |
| | |||||
* | pull upstream changes from gitstatus | romkatv | 2019-05-01 | 1 | -4/+5 |
| | |||||
* | pull upstream changes from gitstatus | romkatv | 2019-05-01 | 1 | -5/+4 |
| | |||||
* | pull upstream changes from gitstatus | romkatv | 2019-05-01 | 4 | -0/+0 |
| | |||||
* | bug fix: show previous repo state instead of loading when in a subdir of a ↵ | romkatv | 2019-05-01 | 1 | -4/+5 |
| | | | | slow repo | ||||
* | pull upstream changes from gitstatus | romkatv | 2019-05-01 | 1 | -0/+2 |
| | |||||
* | Merge branch 'test' | romkatv | 2019-04-30 | 4 | -10/+13 |
|\ | |||||
| * | lower the minimum required zsh version to 5.1 | romkatv | 2019-04-30 | 2 | -4/+7 |
| | | |||||
| * | replace all -v checks with equivalents (trying to port to zsh 5.2) | romkatv | 2019-04-30 | 3 | -8/+8 |
| | | |||||
* | | pull upstream changes from gitstatus | romkatv | 2019-04-30 | 1 | -3/+3 |
| | | |||||
* | | support true color | romkatv | 2019-04-30 | 1 | -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 Perepelitsa | 2019-04-30 | 1 | -2/+2 |
|/ | | | | ${(P)${:-X}} | ||||
* | simplify: ${(x)${:-y}} => ${(x):-y} | romkatv | 2019-04-30 | 1 | -12/+12 |
| | |||||
* | move zsh version check to the top | romkatv | 2019-04-29 | 1 | -5/+9 |
| | |||||
* | pull upstream changes from gitstatus | romkatv | 2019-04-28 | 5 | -36/+78 |
| | |||||
* | call "zle -R" after every "zle reset-prompt" | romkatv | 2019-04-25 | 1 | -3/+3 |
| | |||||
* | protect set_default from user-defined options | romkatv | 2019-04-22 | 1 | -0/+1 |
| | |||||
* | pull upstream changes from gitstatus | romkatv | 2019-04-11 | 1 | -0/+1 |
| | |||||
* | pull upstream changes from gitstatus | romkatv | 2019-04-10 | 4 | -0/+0 |
| | |||||
* | pull upstream changes from gitstatus | romkatv | 2019-04-09 | 1 | -4/+7 |
| | |||||
* | pull upstream changes from gitstatus | romkatv | 2019-04-09 | 4 | -0/+0 |
| | |||||
* | pull upstream changes from gitstatus | romkatv | 2019-04-08 | 4 | -0/+0 |
| | |||||
* | pull upstream changes from gitstatus | romkatv | 2019-04-08 | 4 | -0/+0 |
| | |||||
* | Merge pull request #50 from mingaldrichgan/raspbian | Roman Perepelitsa | 2019-04-05 | 2 | -0/+6 |
|\ | | | | | Add LINUX_RASPBIAN_ICON (Raspberry Pi icon) as an OS_ICON candidate | ||||
| * | Add LINUX_RASPBIAN_ICON (Raspberry Pi icon) as an OS_ICON candidate | Ming Aldrich-Gan | 2019-04-05 | 2 | -0/+6 |
|/ | |||||
* | merge | romkatv | 2019-04-04 | 0 | -0/+0 |
|\ | |||||
| * | Merge pull request #1188 from ChrisBaker97/patch-1 | Dominik Ritter | 2019-04-02 | 1 | -4/+0 |
| |\ | | | | | | | [Docs] remove reference to POWERLEVEL9K_RBENV_ALWAYS | ||||
| | * | remove reference to POWERLEVEL9K_RBENV_ALWAYS | Chris Baker | 2019-03-12 | 1 | -4/+0 |
| | | | |||||
| * | | Merge pull request #1226 from matt1003/master | Dominik Ritter | 2019-04-01 | 1 | -5/+4 |
| |\ \ | | |/ | |/| | [Bugfix] Ensure that vcs init is invoked when using the "vcs_joined" segment. | ||||
| | * | Make check for segments in use take joined segments into account | Dominik Ritter | 2019-03-30 | 2 | -6/+5 |
| | | | |||||
| | * | Ensure VCS is enabled when using segment "vcs_joined" | matt1003 | 2019-03-25 | 1 | -1/+1 |
| |/ | | | | | | | fixes: https://github.com/bhilburn/powerlevel9k/issues/1116 | ||||
* | | pull upstream changes from gitstatus | romkatv | 2019-04-03 | 4 | -0/+0 |
| | | |||||
* | | Merge pull request #47 from sm11963/master | Roman Perepelitsa | 2019-04-02 | 2 | -8/+13 |
|\ \ | | | | | | | Add VCS_LOADING_ICON to the icons map (fixes #46) | ||||
| * | | Add VCS_LOADING_ICON to the icons map | Sam Miller | 2019-04-02 | 2 | -8/+13 |
|/ / | |||||
* | | pull upstream changes from gitstatus | romkatv | 2019-03-31 | 4 | -0/+0 |
| | | |||||
* | | pull upstream changes from gitstatus | romkatv | 2019-03-31 | 4 | -0/+0 |
| | | |||||
* | | pull upstream changes from gitstatus | romkatv | 2019-03-30 | 5 | -9/+12 |
| | | |||||
* | | pull upstream changes from gitstatus | romkatv | 2019-03-30 | 4 | -0/+0 |
| | | |||||
* | | pull upstream changes from gitstatus | romkatv | 2019-03-30 | 5 | -4/+4 |
| | | |||||
* | | add extra diagnostics for old shells | romkatv | 2019-03-30 | 1 | -0/+29 |
| | | |||||
* | | pull upstream changes from gitstatus | romkatv | 2019-03-27 | 5 | -1/+2 |
| | | |||||
* | | Merge pull request #43 from alerque/master | Roman Perepelitsa | 2019-03-27 | 1 | -4/+4 |
|\ \ | | | | | | | Obey GIT_DIR if set for vcsh compatability |