Commit graph

1968 commits

Author SHA1 Message Date
romkatv
e665281508 pull upstream changes from gitstatus 2019-05-03 13:29:45 +02:00
romkatv
79a783fb3c pull upstream changes from gitstatus 2019-05-03 13:23:34 +02:00
romkatv
2d6a5f84bb pull upstream changes from gitstatus 2019-05-01 22:42:02 +02:00
romkatv
41d741fb1f pull upstream changes from gitstatus 2019-05-01 22:37:16 +02:00
romkatv
0a8fc003bd pull upstream changes from gitstatus 2019-05-01 16:21:44 +02:00
romkatv
902e8eb24d bug fix: show previous repo state instead of loading when in a subdir of a slow repo 2019-05-01 12:17:27 +02:00
romkatv
1f8cd36f73 pull upstream changes from gitstatus 2019-05-01 09:50:17 +02:00
romkatv
c6c323ebad Merge branch 'test' 2019-04-30 14:18:00 +02:00
romkatv
f90bf482a5 pull upstream changes from gitstatus 2019-04-30 14:17:55 +02:00
romkatv
79ea46de97 lower the minimum required zsh version to 5.1 2019-04-30 13:39:27 +02:00
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.
2019-04-30 12:56:24 +02:00
romkatv
361eec6f95 replace all -v checks with equivalents (trying to port to zsh 5.2) 2019-04-30 12:51:34 +02:00
Roman Perepelitsa
96f5482a8d
partial rollback of the previous commit: ${(P):-X} is not the same as ${(P)${:-X}} 2019-04-30 12:20:23 +02:00
romkatv
6ef8e2f0cf simplify: ${(x)${:-y}} => ${(x):-y} 2019-04-30 11:54:00 +02:00
romkatv
d29c30af3b move zsh version check to the top 2019-04-29 11:27:41 +02:00
romkatv
844326642d pull upstream changes from gitstatus 2019-04-28 18:26:36 +02:00
romkatv
5fc6fca402 call "zle -R" after every "zle reset-prompt" 2019-04-25 10:24:53 +02:00
romkatv
0e0132e8fa protect set_default from user-defined options 2019-04-22 17:06:41 +02:00
romkatv
1d7c63f80f pull upstream changes from gitstatus 2019-04-11 09:00:58 +02:00
romkatv
2b921c07da pull upstream changes from gitstatus 2019-04-10 22:30:58 +02:00
romkatv
50388b3935 pull upstream changes from gitstatus 2019-04-09 20:12:40 +02:00
romkatv
5267a233cb pull upstream changes from gitstatus 2019-04-09 11:39:40 +02:00
romkatv
1dc1297a58 pull upstream changes from gitstatus 2019-04-08 18:36:28 +02:00
romkatv
5d0e5bc407 pull upstream changes from gitstatus 2019-04-08 15:50:05 +02:00
Roman Perepelitsa
500157bb69
Merge pull request #50 from mingaldrichgan/raspbian
Add LINUX_RASPBIAN_ICON (Raspberry Pi icon) as an OS_ICON candidate
2019-04-05 18:04:42 +02:00
Ming Aldrich-Gan
91b2526c02 Add LINUX_RASPBIAN_ICON (Raspberry Pi icon) as an OS_ICON candidate 2019-04-05 11:35:01 -04:00
romkatv
48f1e35745 merge 2019-04-04 16:59:51 +02:00
romkatv
9a0352bd76 pull upstream changes from gitstatus 2019-04-03 20:34:06 +02:00
Roman Perepelitsa
ecbe8d99e9
Merge pull request #47 from sm11963/master
Add VCS_LOADING_ICON to the icons map (fixes #46)
2019-04-02 12:00:32 +02:00
Dominik Ritter
3dafd79c41
Merge pull request #1188 from ChrisBaker97/patch-1
[Docs] remove reference to POWERLEVEL9K_RBENV_ALWAYS
2019-04-02 08:41:11 +02:00
Sam Miller
2801642436 Add VCS_LOADING_ICON to the icons map 2019-04-01 18:14:52 -07:00
Dominik Ritter
469ff8deda
Merge pull request #1226 from matt1003/master
[Bugfix] Ensure that vcs init is invoked when using the "vcs_joined" segment.
2019-04-01 00:05:39 +02:00
romkatv
04abd44e6c pull upstream changes from gitstatus 2019-03-31 19:56:38 +02:00
romkatv
453a10d2ea pull upstream changes from gitstatus 2019-03-30 22:35:03 +01:00
romkatv
e08bd0bee0 pull upstream changes from gitstatus 2019-03-30 19:30:52 +01:00
romkatv
f0700617a4 pull upstream changes from gitstatus 2019-03-30 19:19:44 +01:00
romkatv
69253953f9 pull upstream changes from gitstatus 2019-03-30 15:40:49 +01:00
romkatv
d9505ef195 add extra diagnostics for old shells 2019-03-30 09:32:26 +01:00
Dominik Ritter
1015b38cf2 Make check for segments in use take joined segments into account 2019-03-30 00:05:33 +01:00
romkatv
c8a3d5ba89 pull upstream changes from gitstatus 2019-03-27 20:27:36 +01:00
Roman Perepelitsa
d14ae7eafd
Merge pull request #43 from alerque/master
Obey GIT_DIR if set for vcsh compatability
2019-03-27 10:13:25 +01:00
Caleb Maclennan
20de3ac8fd
Always expand GIT_DIR to absolute path 2019-03-27 12:09:42 +03:00
Caleb Maclennan
983d9a4480
Obey GIT_DIR if set for vcsh compatability 2019-03-27 12:03:40 +03:00
romkatv
5bd80d88f1 check for joined segments when figuring out whether vcs is enabled; fixes #41 2019-03-26 15:29:31 +01:00
Roman Perepelitsa
e5dbe4fa2e
add a link to contributors 2019-03-25 19:29:15 +01:00
Roman Perepelitsa
5f384212ee
add license section 2019-03-25 19:21:25 +01:00
romkatv
eccbc65779 pull upstream changes from gitstatus 2019-03-25 17:26:29 +01:00
matt1003
690af685ef Ensure VCS is enabled when using segment "vcs_joined"
fixes: https://github.com/bhilburn/powerlevel9k/issues/1116
2019-03-25 17:17:04 +13:00
romkatv
43b984494d print HEAD instead of commit if not available; do not call zle when illegal to do so 2019-03-24 18:05:48 +01:00
romkatv
0710cc7221 docs 2019-03-23 15:34:31 +01:00