# zsh **Repository Path**: KGrease/zsh ## Basic Information - **Project Name**: zsh - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-04-21 - **Last Updated**: 2024-10-24 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # zsh 先安装 oh-my-zsh ```sh sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)" ``` ### 主题使用 - 将 zsh-theme 下的两个文件复制到 ~/.oh-my-zsh/themes 中 - 编辑 ~/.zshrc,配置主题 ZSH_THEME="robbyrussell" - 执行命令 source ~/.zshrc ### 插件使用 - 在 gitee 上搜索插件名字对应的仓库,克隆到 ~/.oh-my-zsh/custom/plugins 中 - 编辑 ~/.zshrc,在 plugins=(git zsh-autosuggestions zsh-syntax-highlighting) 中添加插件名字 - 执行命令 source ~/.zshrc