Oh My Zsh 提供了很多主题风格,我们可以根据自己的喜好,设置主题风格,主题的配置在 ~/.zshrc 文件中可以看到,用一个自己熟悉的编辑器打开这个文件,会看到这一行: ZSH_THEME="robbyrussel" ps:在~/.oh-my-zsh中查看readme文件,在theme一栏可以链接到网上的介绍,可以查看各主题的介绍和截图。 我选择了agnoster,...
https://gitee.com/pocmon/ohmyzsh 安装 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/...
首先下载 gitee 镜像的安装脚本 wget https://gitee.com/mirrors/oh-my-zsh/raw/master/tools/install.sh 找到以下部分 # Default settingsZSH=${ZSH:-~/.oh-my-zsh}REPO=${REPO:-ohmyzsh/ohmyzsh}REMOTE=${REMOTE:-https://github.com/${REPO}.git}BRANCH=${BRANCH:-master} 把 REPO=${REPO:-ohm...
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}.git}|g')...
oh-my-zsh国内镜像安装 由于安装oh-my-zsh需要在github上拉取repo,所以国内⽹络环境安装可能有些困难,然后就看到了⼀个教程,使⽤gitee镜像,但步骤⽐较多,所以我简化了⼀下 部分内容转载来⾃:直接复制执⾏ sh -c "$(curl -fsSL https://gitee.com/mirrors/oh-my-zsh/raw/master/tools/...
大陆安装 oh-my-zsh 使用下面的命令直接从gitee mirror来安装
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/...
1、首先得安装zsh yum install -y zsh 2、安装oh-my-zsh #Install oh-my-zsh via curlsh -c"$(curl -fsSL https://raw.github.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"#Install oh-my-zsh via wgetsh -c"$(wget https://raw.github.com/ohmyzsh/ohmyzsh/master/tools/install.sh -O ...
国内按照oh-my-zsh总是失败,可以借鉴下其他博主的下面的方式安装。 我比较推荐的主题是maran vi ~/.zshrc ZSH_THEME="maran" 可以调成主题为random,多尝试几次,看看哪个更适合自己些。 每次source 主题就会随机变化。 source ~/.zshrc 1. 2. 3.
gitee-ohmyzsh 介绍 国内源gitee安装ohmyzsh。 软件架构 用gitee托管更换github托管,支持国内网速。 原安装文件中的clone地址国内不友好。 (https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh) 安装教程 git clonegit@gitee.com/daotoyi/gitee-ohmyzsh.git ...