sh -c"$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)" 使用wget: bash sh -c"$(wget -O- https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)" 2、手动下载 GitHub:https://github.com/ohmyzsh/ohmyzsh Gitee:https://git...
1. 安装前提 zsh sudo apt-get install zsh git sudo apt-get install git 2. 安装 官网安装方法(适用于可直接访问github) sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)" 国内源替换 下载install.sh脚本到当前目录下 wget https://gitee.com/mirro...
1、下载oh-my-zsh,从Github地址或Gitee地址下载: 注:通过这种方式安装需要先安装HomeBrew /bin/zsh -c "$(curl -fsSL https://gitee.com/cunkai/HomebrewCN/raw/master/Homebrew.sh)" 2、解压后进入到tools目录执行install.sh sh install.sh image.png 卸载: 卸载oh-my-zsh命令:uninstall_oh_my_zsh 安装o...
ZSH_CACHE_DIR="$ZSH/cache" fi # Make sure $ZSH_CACHE_DIR is writable, otherwise use a directory in $HOME if [[ ! -w "$ZSH_CACHE_DIR" ]]; then ZSH_CACHE_DIR="${XDG_CACHE_HOME:-$HOME/.cache}/oh-my-zsh" fi #
# 第一步,下载字体文件,点击ttf文件即可安装gitclonegit@gitee.com:c1h2/powerlevel10k-media.git# 第二步,下载主题gitclone--depth=1 git@gitee.com:c1h2/powerlevel10k.git${ZSH_CUSTOM:-$HOME/.oh-my-zsh/custom}/themes/powerlevel10k 修改~/.zshrc中的theme,改为 ...
1. 下载install.sh文件 直接粘贴下来就行 https://gitee.com/mirrors/oh-my-zsh/blob/master/tools/install.sh 2. 修改REMOTE地址 目前我这是地59行,后续更新可能会有变化 修改 REMOTE=${REMOTE:-https://github.com/${REPO}.git} 改为 REMOTE=${REMOTE:-https://gitee.com/mirrors/oh-my-zsh.git} ...
github.com/zsh-users/zs github.com/zsh-users/zs 国内若不能直接访问 Github,那么,请尝试使用 gitee,对应链接如下: gitee.com/sasukeZhou/zs gitee.com/yuhldr/zsh-co gitee.com/minhanghuang/ (3) 添加插件 欲添加插件,可以在 ~/.zshrc 文件中的 plugins 变量来进行添加,具体如下例: plugins=( aliases...
安装教程 git clonegit@gitee.com/daotoyi/gitee-ohmyzsh.git cd gitee-ohmyzsh sh ./install.sh 使用说明 vim install #安装文件中更换了地址。 # REPO=${REPO:-mirrors/oh-my-zsh} REPO=${REPO:-daotoyi/ohmyzsh} REMOTE=${REMOTE:-https://gitee.com/${REPO}.git} ...
github 上的内容经常在国内拉取不下来,考虑更改为gitee install.sh中是通过下载github上的文件来安装,您可以打开并修改github的部分: REPO=${REPO:-mirrors/oh-my-zsh} REMOTE=${REMOTE:-https://gitee.com/${REPO}.git} 经过测试,该修改可以快速安装oh my zsh ...
git clone --depth=1 https://gitee.com/romkatv/powerlevel10k.git ${ZSH_CUSTOM:-$HOME/.oh-my-zsh/custom}/themes/powerlevel10k 配置参考: 代码语言:javascript 复制 # 主题 ZSH_THEME="powerlevel10k/powerlevel10k" # 插件 plugins=(git web-search jsontools z zsh-syntax-highlighting zsh-autosugge...