Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | add POWERLEVEL9K_RBENV_SOURCES; see #333 | romkatv | 2019-11-18 | 3 | -3/+12 |
| | |||||
* | black os_ison on white background in rainbow style. otherwise it sucks on ↵ | romkatv | 2019-11-15 | 1 | -2/+2 |
| | | | | both MS terminals as they cannot differentiate between black and no background | ||||
* | Add support for classes for AWS profile prompt | Rostyslav Sotnychenko | 2019-11-14 | 3 | -10/+88 |
| | |||||
* | comments | romkatv | 2019-11-12 | 1 | -4/+2 |
| | |||||
* | add VIOWN color params | romkatv | 2019-11-12 | 3 | -6/+6 |
| | |||||
* | wizard: frame for lean prompt | romkatv | 2019-11-07 | 1 | -0/+14 |
| | |||||
* | wizard: add transient prompt (optional); disable hot reload | romkatv | 2019-11-06 | 4 | -0/+60 |
| | |||||
* | enable vi_mode in configs that don't have prompt_char | romkatv | 2019-11-02 | 2 | -0/+35 |
| | |||||
* | add direnv segment; fixes 291 | romkatv | 2019-10-27 | 3 | -0/+22 |
| | |||||
* | define instant_prompt_example to demonstrate how to add segments to instant ↵ | romkatv | 2019-10-27 | 3 | -8/+66 |
| | | | | prompt | ||||
* | improve instant prompt usability, update docs and add an option to the ↵ | romkatv | 2019-10-26 | 4 | -6/+45 |
| | | | | wizard to enable it | ||||
* | enable instant prompt when configuration wizard runs | romkatv | 2019-10-20 | 3 | -0/+9 |
| | |||||
* | Fix EXC_BAD_ACCESS on MacOS Catalina | Benedikt Stemmildt | 2019-10-12 | 1 | -2/+2 |
| | | | | Fix #259 | ||||
* | change dir foreground from black to white in rainbow style; looks a bit less ↵ | romkatv | 2019-10-11 | 1 | -6/+6 |
| | | | | ugly | ||||
* | add rainbow style; delete p9k style | romkatv | 2019-10-11 | 1 | -0/+844 |
| | |||||
* | cleanup | romkatv | 2019-10-11 | 3 | -86/+7 |
| | |||||
* | add the default powerlevel9k style to the wizard | romkatv | 2019-10-10 | 1 | -0/+74 |
| | |||||
* | tone down the downsides of pure | romkatv | 2019-10-10 | 1 | -13/+8 |
| | |||||
* | docs | romkatv | 2019-10-10 | 1 | -20/+26 |
| | |||||
* | define POWERLEVEL9K_VCS_MAX_SYNC_LATENCY_SECONDS=0 in p10k-pure | romkatv | 2019-10-10 | 1 | -2/+7 |
| | |||||
* | make p10k-pure work without gitstatus | romkatv | 2019-10-10 | 1 | -29/+49 |
| | |||||
* | revamp aws_eb_env. it returns the starred entry from the output of "eb list" | romkatv | 2019-10-08 | 2 | -0/+14 |
| | |||||
* | avoid calling 'functions +M' as it sometimes crashes zsh | romkatv | 2019-10-08 | 2 | -2/+2 |
| | |||||
* | add azure prompt segment | romkatv | 2019-10-08 | 2 | -0/+14 |
| | |||||
* | clarify comments for POWERLEVEL9K_DIR_MAX_LENGTH | romkatv | 2019-10-08 | 2 | -2/+4 |
| | | | | | | | | Make it explicit that POWERLEVEL9K_DIR_MAX_LENGTH isn't the only constraint that may cause directory truncation. See the original description of #250 before this issue was repurposed for something unrelated. | ||||
* | replace expansion-based Git status formatter with a function | romkatv | 2019-10-07 | 2 | -86/+168 |
| | |||||
* | don't print options when no_aliases, no_sh_glob and brace_expand are all set | romkatv | 2019-10-03 | 3 | -3/+3 |
| | |||||
* | enable `aws` prompt segment by default | romkatv | 2019-09-24 | 2 | -0/+14 |
| | |||||
* | remove old screenshots | romkatv | 2019-09-24 | 1 | -0/+0 |
| | |||||
* | bold user@hostname when root; add a comment explaining how to always show ↵ | romkatv | 2019-09-24 | 2 | -8/+10 |
| | | | | user@hostname | ||||
* | new prompt segment: dotnet_version | romkatv | 2019-09-24 | 2 | -0/+18 |
| | | | | | | | | | | To enable this segment: 1. Run `p10k configure`. 2. Open `~/.p10k.zsh` and search for `dotnet_version`. 3. Uncomment the first occurrence. Fixes #233. | ||||
* | merge improvements from lean to pure | romkatv | 2019-09-23 | 1 | -9/+8 |
| | |||||
* | survive aliased `local` | romkatv | 2019-09-20 | 2 | -2/+2 |
| | |||||
* | survive emulate sh; fixes #226 | romkatv | 2019-09-20 | 2 | -26/+24 |
| | |||||
* | add vpn_ip (disable by default) | romkatv | 2019-09-19 | 2 | -0/+24 |
| | |||||
* | add OVERWRITE vi mode | romkatv | 2019-09-18 | 2 | -0/+6 |
| | | | | | | | | | | | | | | | | | | When using vi_mode segment, the new mode can be enabled by defining POWERLEVEL9K_VI_OVERWRITE_MODE_STRING. POWERLEVEL9K_VI_OVERWRITE_MODE_STRING=OVERWRITE When using prompt_char, the new mode can be enabled by defining POWERLEVEL9K_PROMPT_CHAR_OVERWRITE_STATE=true. The prompt symbol in OVERWRITE state defaults to '▶'. It can be customized by defining POWERLEVEL9K_PROMPT_CHAR_{OK,ERROR}_VIOWR_CONTENT_EXPANSION. POWERLEVEL9K_PROMPT_CHAR_OVERWRITE_STATE=true POWERLEVEL9K_PROMPT_CHAR_OK_VIOWR_CONTENT_EXPANSION=R POWERLEVEL9K_PROMPT_CHAR_ERROR_VIOWR_CONTENT_EXPANSION=R Fixes #219. | ||||
* | cleanup | romkatv | 2019-09-18 | 2 | -2/+2 |
| | |||||
* | comments | romkatv | 2019-09-18 | 1 | -1/+0 |
| | |||||
* | comments | romkatv | 2019-09-10 | 2 | -2/+2 |
| | |||||
* | comments | Roman Perepelitsa | 2019-09-10 | 1 | -0/+1 |
| | |||||
* | don't display kubecontext namespace if it's literally 'default' | romkatv | 2019-09-09 | 2 | -12/+14 |
| | |||||
* | Merge branch 'config-kubernetes' of ↵ | romkatv | 2019-09-09 | 2 | -2/+2 |
|\ | | | | | | | https://github.com/iAnomaly/powerlevel10k into iAnomaly-config-kubernetes | ||||
| * | Default Kubernetes content expansion to include namespace. | Cameron Boulton | 2019-09-07 | 2 | -2/+2 |
| | | |||||
* | | use fancier battery icons with nerd fonts | romkatv | 2019-09-09 | 2 | -16/+8 |
| | | |||||
* | | typo in comments | romkatv | 2019-09-09 | 1 | -1/+1 |
| | | |||||
* | | strip hexadecimal colors from vcs when loading; see #207 | romkatv | 2019-09-08 | 2 | -4/+4 |
| | | |||||
* | | fix battery color | romkatv | 2019-09-07 | 1 | -1/+1 |
| | | |||||
* | | comments | romkatv | 2019-09-07 | 2 | -4/+20 |
| | | |||||
* | | disable or substitute "compatible" icons that cannot be displayed by the ↵ | romkatv | 2019-09-07 | 2 | -2/+3 |
|/ | | | | stock Menlo on macOS | ||||
* | font comments | romkatv | 2019-09-06 | 2 | -8/+8 |
| |