Commit Graph

2557 Commits (f5f5fba08f97298d6f3faa7d745f2bb0a4cab473)
 

Author SHA1 Message Date
romkatv b92d510882 speed up ram and swap prompts 5 years ago
romkatv 3e3da88dbc speed up rbenv prompt 5 years ago
romkatv 89d7caa16b speed up battery prompt 5 years ago
romkatv 99457a4ad5 speed up disk_usage prompt 5 years ago
romkatv 3ca1477bd8 cleanup 5 years ago
romkatv dc6fdf52b7 speed up aws_eb_env prompt 5 years ago
romkatv 5b703c0db0 speed up swift_version prompt 5 years ago
romkatv 4a3b62cde9 speed up pyenv prompt 5 years ago
romkatv 743b7c6584 speed up todo prompt 5 years ago
romkatv 0b8a9bded5 speed up symfony2_version prompt 5 years ago
romkatv 0eef01d97f cleanup 5 years ago
romkatv ee8a1b940f speed up symfony2_tests and rspec_stats 5 years ago
romkatv edc4e1375a speed up rust_version prompt 5 years ago
romkatv ee0d1bc452 speed up php_version prompt 5 years ago
romkatv f27db92335 speed up nodeenv prompt 5 years ago
romkatv fed768479f speed up go_version prompt 5 years ago
romkatv 5800b79f51 speed up node_version and nvm prompts; fixes #12 5 years ago
romkatv 4e81de5322 bug fix: clear bold when drawing the end of a powerline 5 years ago
romkatv 1ba90abd4a truncate_to_unique: respect POWERLEVEL9K_SHORTEN_FOLDER_MARKER with default value of (.bzr|CVS|.git|.hg|.svn|.citc) 5 years ago
romkatv 3c5b52750e append POWERLEVEL9K_SHORTEN_DELIMITER when shortening with truncate_to_unique; use * as default in this case 5 years ago
romkatv 15e7d74087 cleanup 5 years ago
romkatv 5fb888cda9 do not shorten the last dir in truncate_to_unique 5 years ago
romkatv fece2f1fb4 save a fork in docker command 5 years ago
romkatv e860296bf9 fix bold<->nonbold transitions in dir 5 years ago
romkatv 4d2dea0547 cleanup 5 years ago
romkatv bd4a3503d2 support multiple markers with POWERLEVEL9K_SHORTEN_STRATEGY=truncate_with_folder_marker 5 years ago
romkatv b910da06a0 when replacing parts of cwd with "...", make sure there is more than 1 char to be replaced 5 years ago
romkatv 7cfe479c87 support dynamic directories in dir prompt and fix a dozen bugs 5 years ago
Roman Perepelitsa 55d887c21e
Merge pull request #70 from towo/fix/lang-conditional
Work around an unknown bug (most likely in antigen)
5 years ago
Tobias Wolter 6f399a902e
Fix weird parser error
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.
5 years ago
romkatv 54eb7c7dec simplify right prompt prefix and suffix 5 years ago
romkatv 154bc2e1ff ensure that every line of left prompt ends with LEFT_SEGMENT_SEPARATOR 5 years ago
romkatv f5c2bf1669 force icon initialization if print_icon is called manually 5 years ago
romkatv a7a377339a use consistent case in warnings 5 years ago
romkatv 1d7c8368bc better terminal color mode detection 5 years ago
romkatv b451b7a758 pull upstream changes from gitstatus 5 years ago
romkatv eb8aaecf62 add VISUAL mode to vi_mode 5 years ago
romkatv f8c39ec9c2 pull upstream changes from gitstatus 5 years ago
romkatv afa798e459 pull upstream changes from gitstatus 5 years ago
romkatv e665281508 pull upstream changes from gitstatus 5 years ago
romkatv 79a783fb3c pull upstream changes from gitstatus 5 years ago
romkatv 2d6a5f84bb pull upstream changes from gitstatus 5 years ago
romkatv 41d741fb1f pull upstream changes from gitstatus 5 years ago
romkatv 0a8fc003bd pull upstream changes from gitstatus 5 years ago
romkatv 902e8eb24d bug fix: show previous repo state instead of loading when in a subdir of a slow repo 5 years ago
romkatv 1f8cd36f73 pull upstream changes from gitstatus 5 years ago
romkatv c6c323ebad Merge branch 'test' 5 years ago
romkatv f90bf482a5 pull upstream changes from gitstatus 5 years ago
romkatv 79ea46de97 lower the minimum required zsh version to 5.1 5 years ago
romkatv 182f0f7162 support true color
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.
5 years ago