1
0
Fork 0
mirror of https://github.com/romkatv/powerlevel10k.git synced 2024-11-22 20:30:07 +00:00

update loading time benchmark

This commit is contained in:
romkatv 2019-10-04 10:06:13 +02:00
parent f8314e5959
commit adfdf198b7

View file

@ -262,21 +262,17 @@ prompt latency when using Powerlevel10k, please
### Is Powerlevel10k fast to load? ### Is Powerlevel10k fast to load?
The amount of time it takes for Powerlevel10k to render the first prompt is higher than for the Yes, provided that you are using ZSH >= 5.4.
subsequent prompts but it's still fairly fast.
Time to first prompt can be measured with the following benchmark: Loading time, or time to first prompt, can be measured with the following benchmark:
```zsh ```zsh
time (repeat 100 zsh -dfis <<< 'source ~/powerlevel10k/powerlevel10k.zsh-theme') time (repeat 1000 zsh -dfis <<< 'source ~/powerlevel10k/powerlevel10k.zsh-theme')
``` ```
On the same machine as in the [prompt benchmark](#is-it-really-fast) this results in 36.9 ms per Running this command with `~/powerlevel10k` as the current directory on the same machine as in the
invocation when executed in a small git repository (I used the `powerlevel10k` repo itself). For [prompt benchmark](#is-it-really-fast) takes 29 seconds (29 ms per invocation). This is about 6
comparison, the same benchmark gives 171 ms for powerlevel9k/master and 505 ms for times faster than powerlevel9k/master and 17 times faster than powerlevel9k/next.
powerlevel9k/next.
*Note: Powerlevel10k is significantly faster to load with zsh version 5.4 and above.*
### Does Powerlevel10k always render exactly the same prompt as Powerlevel9k given the same config? ### Does Powerlevel10k always render exactly the same prompt as Powerlevel9k given the same config?