Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | append POWERLEVEL9K_SHORTEN_DELIMITER when shortening with ↵ | romkatv | 2019-05-19 | 1 | -4/+5 |
| | | | | truncate_to_unique; use * as default in this case | ||||
* | cleanup | romkatv | 2019-05-19 | 1 | -1/+1 |
| | |||||
* | do not shorten the last dir in truncate_to_unique | romkatv | 2019-05-19 | 1 | -1/+1 |
| | |||||
* | fix bold<->nonbold transitions in dir | romkatv | 2019-05-19 | 1 | -20/+18 |
| | |||||
* | cleanup | romkatv | 2019-05-19 | 1 | -4/+4 |
| | |||||
* | support multiple markers with ↵ | romkatv | 2019-05-19 | 1 | -19/+21 |
| | | | | POWERLEVEL9K_SHORTEN_STRATEGY=truncate_with_folder_marker | ||||
* | when replacing parts of cwd with "...", make sure there is more than 1 char ↵ | romkatv | 2019-05-19 | 1 | -2/+2 |
| | | | | to be replaced | ||||
* | support dynamic directories in dir prompt and fix a dozen bugs | romkatv | 2019-05-19 | 1 | -263/+176 |
| | |||||
* | Fix weird parser error | Tobias Wolter | 2019-05-18 | 1 | -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 suffix | romkatv | 2019-05-14 | 1 | -3/+2 |
| | |||||
* | ensure that every line of left prompt ends with LEFT_SEGMENT_SEPARATOR | romkatv | 2019-05-10 | 1 | -18/+22 |
| | |||||
* | use consistent case in warnings | romkatv | 2019-05-08 | 1 | -2/+2 |
| | |||||
* | better terminal color mode detection | romkatv | 2019-05-08 | 1 | -8/+5 |
| | |||||
* | add VISUAL mode to vi_mode | romkatv | 2019-05-05 | 1 | -4/+28 |
| | |||||
* | bug fix: show previous repo state instead of loading when in a subdir of a ↵ | romkatv | 2019-05-01 | 1 | -4/+5 |
| | | | | slow repo | ||||
* | Merge branch 'test' | romkatv | 2019-04-30 | 1 | -6/+6 |
|\ | |||||
| * | lower the minimum required zsh version to 5.1 | romkatv | 2019-04-30 | 1 | -3/+3 |
| | | |||||
| * | replace all -v checks with equivalents (trying to port to zsh 5.2) | romkatv | 2019-04-30 | 1 | -5/+5 |
| | | |||||
* | | 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 |
| | |||||
* | call "zle -R" after every "zle reset-prompt" | romkatv | 2019-04-25 | 1 | -3/+3 |
| | |||||
* | Add LINUX_RASPBIAN_ICON (Raspberry Pi icon) as an OS_ICON candidate | Ming Aldrich-Gan | 2019-04-05 | 1 | -0/+1 |
| | |||||
* | Add VCS_LOADING_ICON to the icons map | Sam Miller | 2019-04-02 | 1 | -8/+8 |
| | |||||
* | add extra diagnostics for old shells | romkatv | 2019-03-30 | 1 | -0/+29 |
| | |||||
* | Always expand GIT_DIR to absolute path | Caleb Maclennan | 2019-03-27 | 1 | -4/+4 |
| | |||||
* | Obey GIT_DIR if set for vcsh compatability | Caleb Maclennan | 2019-03-27 | 1 | -4/+4 |
| | |||||
* | print HEAD instead of commit if not available; do not call zle when illegal ↵ | romkatv | 2019-03-24 | 1 | -4/+4 |
| | | | | to do so | ||||
* | add node_version only inside project folder option | Mohammed Abdel Ra'ouf | 2019-03-22 | 1 | -3/+27 |
| | |||||
* | don't kill timer when subshells exit | romkatv | 2019-03-22 | 1 | -2/+6 |
| | |||||
* | formatting | romkatv | 2019-03-22 | 1 | -2/+2 |
| | |||||
* | restore the copyright from the origin of powerlevel9k | romkatv | 2019-03-22 | 1 | -3/+3 |
| | |||||
* | fix incoming changes in git prompt | romkatv | 2019-03-21 | 1 | -1/+1 |
| | |||||
* | stop using typeset when declaring functions; it's stupid | romkatv | 2019-03-21 | 1 | -45/+49 |
| | |||||
* | make extended git styling options consistent with the existing styling options | romkatv | 2019-03-20 | 1 | -12/+24 |
| | |||||
* | simpler ws handling in git | romkatv | 2019-03-20 | 1 | -20/+10 |
| | |||||
* | restore "loading" git status | romkatv | 2019-03-20 | 1 | -1/+1 |
| | |||||
* | support individual styling for all parts of git prompt | romkatv | 2019-03-19 | 1 | -36/+88 |
| | |||||
* | support segments with multiple text elements | romkatv | 2019-03-19 | 1 | -142/+142 |
| | |||||
* | bail if someone tries to interpet powerlevel9k.zsh-theme with sh | romkatv | 2019-03-19 | 1 | -3/+7 |
| | |||||
* | get rid of unwanted whitespaces; this time the wanted whitespaces should remain | romkatv | 2019-03-19 | 1 | -5/+7 |
| | |||||
* | optimize prompt_context | romkatv | 2019-03-19 | 1 | -2/+2 |
| | |||||
* | Revert "remove superfluous spaces from rprompt; optimize context" | romkatv | 2019-03-19 | 1 | -11/+11 |
| | | | | This reverts commit a97892bc72585063eec4b85717f26b75c97a17e2. | ||||
* | remove superfluous spaces from rprompt; optimize context | romkatv | 2019-03-19 | 1 | -11/+11 |
| | |||||
* | add caching to simple_dir | romkatv | 2019-03-18 | 1 | -4/+13 |
| | |||||
* | bug fix: correctly handle consecutive segments without background | romkatv | 2019-03-18 | 1 | -13/+13 |
| | |||||
* | expand string parameters with (g::) where appropriate | romkatv | 2019-03-18 | 1 | -5/+25 |
| | |||||
* | optimze prompt compiler | romkatv | 2019-03-18 | 1 | -74/+51 |
| | |||||
* | optimize left_prompt_segment further | romkatv | 2019-03-18 | 1 | -2/+2 |
| |