mirror of
https://github.com/romkatv/powerlevel10k.git
synced 2024-11-22 04:10:07 +00:00
make omz installation command work when executed from weird shells (no quoting though; that would be too much)
This commit is contained in:
parent
0c341b6702
commit
6c9d0977a6
1 changed files with 28 additions and 28 deletions
56
README.md
56
README.md
|
@ -366,14 +366,14 @@ make sure to disable the current theme in your plugin manager. See
|
||||||
### Oh My Zsh
|
### Oh My Zsh
|
||||||
|
|
||||||
```zsh
|
```zsh
|
||||||
git clone --depth=1 https://github.com/romkatv/powerlevel10k.git ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/themes/powerlevel10k
|
git clone --depth=1 https://github.com/romkatv/powerlevel10k.git ${ZSH_CUSTOM:-$HOME/.oh-my-zsh/custom}/themes/powerlevel10k
|
||||||
```
|
```
|
||||||
|
|
||||||
Users in mainland China can use the official mirror on gitee.com for faster download.<br>
|
Users in mainland China can use the official mirror on gitee.com for faster download.<br>
|
||||||
中国大陆用户可以使用 gitee.com 上的官方镜像加速下载.
|
中国大陆用户可以使用 gitee.com 上的官方镜像加速下载.
|
||||||
|
|
||||||
```zsh
|
```zsh
|
||||||
git clone --depth=1 https://gitee.com/romkatv/powerlevel10k.git ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/themes/powerlevel10k
|
git clone --depth=1 https://gitee.com/romkatv/powerlevel10k.git ${ZSH_CUSTOM:-$HOME/.oh-my-zsh/custom}/themes/powerlevel10k
|
||||||
```
|
```
|
||||||
|
|
||||||
Set `ZSH_THEME="powerlevel10k/powerlevel10k"` in `~/.zshrc`.
|
Set `ZSH_THEME="powerlevel10k/powerlevel10k"` in `~/.zshrc`.
|
||||||
|
@ -591,19 +591,19 @@ Powerlevel10k is released under the
|
||||||
|
|
||||||
The command to update Powerlevel10k depends on how it was installed.
|
The command to update Powerlevel10k depends on how it was installed.
|
||||||
|
|
||||||
| Installation | Update command |
|
| Installation | Update command |
|
||||||
|---------------------------|-----------------------------------------------------------------------|
|
|---------------------------|-------------------------------------------------------------|
|
||||||
| [Manual](#manual) | `git -C ~/powerlevel10k pull` |
|
| [Manual](#manual) | `git -C ~/powerlevel10k pull` |
|
||||||
| [Oh My Zsh](#oh-my-zsh) | `git -C ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/themes/powerlevel10k pull` |
|
| [Oh My Zsh](#oh-my-zsh) | `git -C ${ZSH_CUSTOM:-$HOME/.oh-my-zsh/custom}/themes/powerlevel10k pull` |
|
||||||
| [Prezto](#prezto) | `zprezto-update` |
|
| [Prezto](#prezto) | `zprezto-update` |
|
||||||
| [Zim](#zim) | `zimfw update` |
|
| [Zim](#zim) | `zimfw update` |
|
||||||
| [Antigen](#antigen) | `antigen update` |
|
| [Antigen](#antigen) | `antigen update` |
|
||||||
| [Zplug](#zplug) | `zplug update` |
|
| [Zplug](#zplug) | `zplug update` |
|
||||||
| [Zgen](#zgen) | `zgen update` |
|
| [Zgen](#zgen) | `zgen update` |
|
||||||
| [Zplugin](#zplugin) | `zplugin update` |
|
| [Zplugin](#zplugin) | `zplugin update` |
|
||||||
| [Zinit](#zinit) | `zinit update` |
|
| [Zinit](#zinit) | `zinit update` |
|
||||||
| [Homebrew](#homebrew) | `brew update && brew upgrade` |
|
| [Homebrew](#homebrew) | `brew update && brew upgrade` |
|
||||||
| [Arch Linux](#arch-linux) | `yay -Syu --noconfirm --needed zsh-theme-powerlevel10k-git` |
|
| [Arch Linux](#arch-linux) | `yay -Syu --noconfirm --needed zsh-theme-powerlevel10k-git` |
|
||||||
|
|
||||||
**IMPORTANT**: Restart Zsh after updating Powerlevel10k. [Do not use `source ~/.zshrc`](
|
**IMPORTANT**: Restart Zsh after updating Powerlevel10k. [Do not use `source ~/.zshrc`](
|
||||||
#weird-things-happen-after-typing-source-zshrc).
|
#weird-things-happen-after-typing-source-zshrc).
|
||||||
|
@ -641,19 +641,19 @@ The command to update Powerlevel10k depends on how it was installed.
|
||||||
Powerlevel10k. The command to delete them depends on which installation method you'd chosen.
|
Powerlevel10k. The command to delete them depends on which installation method you'd chosen.
|
||||||
Refer to the [installation instructions](#installation) if you need a reminder.
|
Refer to the [installation instructions](#installation) if you need a reminder.
|
||||||
|
|
||||||
| Installation | Uninstall command |
|
| Installation | Uninstall command |
|
||||||
|---------------------------|---------------------------------------------------------------------|
|
|---------------------------|------------------------------------------------------------------|
|
||||||
| [Manual](#manual) | `rm -rf ~/powerlevel10k` |
|
| [Manual](#manual) | `rm -rf ~/powerlevel10k` |
|
||||||
| [Oh My Zsh](#oh-my-zsh) | `rm -rf -- ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/themes/powerlevel10k` |
|
| [Oh My Zsh](#oh-my-zsh) | `rm -rf -- ${ZSH_CUSTOM:-$HOME/.oh-my-zsh/custom}/themes/powerlevel10k` |
|
||||||
| [Prezto](#prezto) | n/a |
|
| [Prezto](#prezto) | n/a |
|
||||||
| [Zim](#zim) | `zimfw uninstall` |
|
| [Zim](#zim) | `zimfw uninstall` |
|
||||||
| [Antigen](#antigen) | `antigen purge romkatv/powerlevel10k` |
|
| [Antigen](#antigen) | `antigen purge romkatv/powerlevel10k` |
|
||||||
| [Zplug](#zplug) | `zplug clean` |
|
| [Zplug](#zplug) | `zplug clean` |
|
||||||
| [Zgen](#zgen) | `zgen reset` |
|
| [Zgen](#zgen) | `zgen reset` |
|
||||||
| [Zplugin](#zplugin) | `zplugin delete romkatv/powerlevel10k` |
|
| [Zplugin](#zplugin) | `zplugin delete romkatv/powerlevel10k` |
|
||||||
| [Zinit](#zinit) | `zinit delete romkatv/powerlevel10k` |
|
| [Zinit](#zinit) | `zinit delete romkatv/powerlevel10k` |
|
||||||
| [Homebrew](#homebrew) | `brew uninstall powerlevel10k; brew untap romkatv/powerlevel10k` |
|
| [Homebrew](#homebrew) | `brew uninstall powerlevel10k; brew untap romkatv/powerlevel10k` |
|
||||||
| [Arch Linux](#arch-linux) | `yay -R --noconfirm zsh-theme-powerlevel10k-git` |
|
| [Arch Linux](#arch-linux) | `yay -R --noconfirm zsh-theme-powerlevel10k-git` |
|
||||||
5. Restart Zsh. [Do not use `source ~/.zshrc`](#weird-things-happen-after-typing-source-zshrc).
|
5. Restart Zsh. [Do not use `source ~/.zshrc`](#weird-things-happen-after-typing-source-zshrc).
|
||||||
|
|
||||||
### Where can I ask for help and report bugs?
|
### Where can I ask for help and report bugs?
|
||||||
|
|
Loading…
Reference in a new issue