diff options
author | romkatv <roman.perepelitsa@gmail.com> | 2020-05-16 14:29:03 +0300 |
---|---|---|
committer | romkatv <roman.perepelitsa@gmail.com> | 2020-05-16 14:29:03 +0300 |
commit | af0b38718270daf46310fa1333587cc40e66690d (patch) | |
tree | 1d0fd4259ae67929ce70f405cd3ff83ae510ec1c /README.md | |
parent | bf0255931b1c67126f8b66a1105ab821e0a250bd (diff) |
mention that powerlevel10k can be cloned from gitee.com; see #124
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 13 |
1 files changed, 13 insertions, 0 deletions
@@ -351,6 +351,13 @@ git clone --depth=1 https://github.com/romkatv/powerlevel10k.git ~/powerlevel10k echo 'source ~/powerlevel10k/powerlevel10k.zsh-theme' >>! ~/.zshrc ``` +Users in mainland China can use the official mirror on gitee.com for faster download. + +```zsh +git clone --depth=1 https://gitee.com/romkatv/powerlevel10k.git ~/powerlevel10k +echo 'source ~/powerlevel10k/powerlevel10k.zsh-theme' >>! ~/.zshrc +``` + This is the simplest kind of installation and it works even if you are using a plugin manager. Just make sure to disable the current theme in your plugin manager. See [troubleshooting](#cannot-make-powerlevel10k-work-with-my-plugin-manager) for help. @@ -361,6 +368,12 @@ make sure to disable the current theme in your plugin manager. See git clone --depth=1 https://github.com/romkatv/powerlevel10k.git ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/themes/powerlevel10k ``` +Users in mainland China can use the official mirror on gitee.com for faster download. + +```zsh +git clone --depth=1 https://gitee.com/romkatv/powerlevel10k.git ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/themes/powerlevel10k +``` + Set `ZSH_THEME="powerlevel10k/powerlevel10k"` in `~/.zshrc`. ### Prezto |