From 7c32effda4991133bdb96e7ccf2c6faa80e253bc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=A4=A9=E9=98=81=E5=88=9B=E5=AE=A2official?= <104115333+xxx252525@users.noreply.github.com> Date: Thu, 11 Jul 2024 17:34:22 +0800 Subject: [PATCH] Update README.md --- README.md | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 6912282..b2dbd47 100644 --- a/README.md +++ b/README.md @@ -221,15 +221,22 @@ plugins=( zsh-syntax-highlighting zsh-completions ) +# 复制root根目录下的.oh-my-zsh目录和.zshrc到用户根目录下 +cp -r .oh-my-zsh /home/user/oh-my-zsh +cp .zshrc /home/user/.zshrc ``` -重启配置文件或者重启系统 +重启配置文件 ```shell # 重载配置文件 source .zshrc -# 重启系统 -sudo reboot +``` + +配置Shell终端,第一次使用`source .zshrc`命令可以直接进入到该主题配置界面,后续就需要单独使用命令进行配置 + +```shell +p10k configure ``` ---