Compare commits

...

3 Commits

Author SHA1 Message Date
3w36zj6 54736bc578
Merge 59ff7f8bef into 8fa10f43a0 2025-01-30 11:42:56 -08:00
vladislav doster 8fa10f43a0
fix(parser.zsh): `_p9k_parse_buffer` docstring typo (#2820)
- `pupulates` => `populates`
2025-01-29 05:28:19 -08:00
3w36zj6 59ff7f8bef docs: add Sheldon to Installation in README 2024-08-15 06:34:14 +09:00
2 changed files with 17 additions and 1 deletions

View File

@ -431,6 +431,7 @@ Powerlevel10k.
- [Arch Linux](#arch-linux) - [Arch Linux](#arch-linux)
- [Alpine Linux](#alpine-linux) - [Alpine Linux](#alpine-linux)
- [Fig](#fig) - [Fig](#fig)
- [Sheldon](#sheldon)
### Manual ### Manual
@ -549,6 +550,21 @@ ln -s /usr/share/zsh/plugins/powerlevel10k ~/.local/share/zsh/plugins/
Follow the instructions on Follow the instructions on
[this page](https://fig.io/plugins/other/powerlevel10k). [this page](https://fig.io/plugins/other/powerlevel10k).
### Sheldon
Add the following to the Sheldon config file.
```toml
[plugins.powerlevel10k]
github = "romkatv/powerlevel10k"
```
Or run the following to automatically add it.
```zsh
sheldon add powerlevel10k --github romkatv/powerlevel10k
```
## Configuration ## Configuration
- [For new users](#for-new-users) - [For new users](#for-new-users)

View File

@ -102,7 +102,7 @@ typeset -grA __p9k_pb_term_skip=(
# Usage: _p9k_parse_buffer <buffer> [token-limit] # Usage: _p9k_parse_buffer <buffer> [token-limit]
# #
# Parses the specified command line buffer and pupulates array P9K_COMMANDS # Parses the specified command line buffer and populates array P9K_COMMANDS
# with commands from it. Terminates early and returns 1 if there are more # with commands from it. Terminates early and returns 1 if there are more
# tokens than the specified limit. # tokens than the specified limit.
# #