# 国内用户可用git clonehttps://gitee.com/Annihilater/zsh-syntax-highlighting.git${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-syntax-highlighting# githubgit clone https://github.com/zsh-users/zsh-syntax-highlighting.git${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-syntax-highlighting 3.2...
Oh My Zsh 提供了很多主题风格,我们可以根据自己的喜好,设置主题风格,主题的配置在 ~/.zshrc 文件中可以看到,用一个自己熟悉的编辑器打开这个文件,会看到这一行: ZSH_THEME="robbyrussel" ps:在~/.oh-my-zsh中查看readme文件,在theme一栏可以链接到网上的介绍,可以查看各主题的介绍和截图。 我选择了agnoster,...
1.首先确保zsh的安装 sudo aptinstallgit zsh -y 2.然后使用curl或者wget工具进行在线安装 使用curl 安装 sh -c"$(curl -fsSL https://gitee.com/pocmon/ohmyzsh/raw/master/tools/install.sh)" 使用wget 安装 sh -c"$(wget -O- https://gitee.com/pocmon/ohmyzsh/raw/master/tools/install.sh)" ...
1.使用 curl 安装 sh -c"$(curl -fsSL https://gitee.com/pocmon/ohmyzsh/raw/master/tools/install.sh)" 2.使用 wget 安装 sh -c"$(wget -O- https://gitee.com/pocmon/ohmyzsh/raw/master/tools/install.sh)"
chsh-s/usr/bin/zsh 以下是国内镜像,速度快 下载码云安装包 代码语言:javascript 复制 wget https://gitee.com/mirrors/oh-my-zsh/raw/master/tools/install.sh 编辑install.sh 找到以下部分 代码语言:javascript 复制 # Default settingsZSH=${ZSH:-~/.oh-my-zsh}REPO=${REPO:-ohmyzsh/ohmyzsh}REMOTE=$...
在国内 gitee 找 oh-my-zsh 克隆 # 里面代码和官方的有微调,有兴趣可自己对比下https://gitee.com/pocmon/ohmyzsh 使用 # 使用 curl 安装 sh -c "$(curl -fsSL https://gitee.com/pocmon/ohmyzsh/raw/master/tools/install.sh)" # 使用 wget 安装 ...
REPO=${REPO:-mirrors/oh-my-zsh} REMOTE=${REMOTE:-https://gitee.com/${REPO}.git} 编辑后保存, 运行安装即可. (运行前先给install.sh权限) 修改仓库地址 cd ~/.oh-my-zsh git remote set-url origin https://gitee.com/mirrors/oh-my-zsh.git git pull 原文地址: https://touka.dev/tech/...
安装zsh apt install zsh 国内镜像安装oh-my-zsh 直接复制执行 sh -c "$(curl -fsSL https://gitee.com/mirrors/oh-my-zsh/raw/master/tools/install.sh \ | sed 's|^REPO=.*|REPO=${REPO:-mirrors/oh-my-zsh}|g' \ | sed 's|^REMOTE=.*|REMOTE=${REMOTE:-https://gitee.com/${REPO}.gi...
国内按照oh-my-zsh总是失败,可以借鉴下其他博主的下面的方式安装。 我比较推荐的主题是maran vi ~/.zshrc ZSH_THEME="maran" 可以调成主题为random,多尝试几次,看看哪个更适合自己些。 每次source 主题就会随机变化。 source ~/.zshrc 1. 2. 3.
国内源gitee安装ohmyzsh。 软件架构 用gitee托管更换github托管,支持国内网速。 原安装文件中的clone地址国内不友好。 (https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh) 安装教程 git clonegit@gitee.com/daotoyi/gitee-ohmyzsh.git ...