chsh -s $(whichzsh) sh -c"$(wget -O- https://raw.github.com/ohmyzsh/ohmyzsh/master/tools/install.sh)" 主要需要开 vpn,并且 git 需要配置代理。 git config --global https.proxy http://127.0.0.1:7890 git config --global http.proxy http://127.0.0.1:7890 配置oh-my-zsh 我选的主题...
git clone https://github.com/zsh-users/zsh-syntax-highlighting.git ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-syntax-highlighting 三、安装 Oh-My-Zsh 执行语句; git clone --depth=1 https://github.com/romkatv/powerlevel10k.git ${ZSH_CUSTOM:-$HOME/.oh-my-zsh/custom}/themes/powerl...
-- 设置 --chsh -s /bin/zsh -- 检查一遍echo $SHELL 是/bin/zsh的 就可以安装oh-my-zsh了 安装文档 https://github.com/ohmyzsh/ohmyzsh/wiki 推荐使用curl的方式: sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)" on-my-zsh网站 https:/...
一、配置修改终端环境 // 输入命令,检查是否有/bin/zsh(macOS自带zsh)cat/etc/shells// 修改默认的bash为zsh,重启Terminalchsh-s/bin/zsh// 检查修改结果,显示/bin/zsh即成功.echo$SHELL 二、安装配置oh-my-zsh // 国内地址安装sh-c"$(curl -fsSL https://gitee.com/shmhlsy/oh-my-zsh-install.sh/raw...
curl -Lo install.sh https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh && sh install.sh 安装好 ohmyzsh 之后可以设置下主题和插件 插件比较值得推荐的是zsh-syntax-highlighting,安装方式参考How to install,在 ohmyzsh 中可以直接通过命令安装 ...
首先安装zsh: sudoapt-getinstall-y zsh 然后按照官网指导安装oh-my-zsh: https://ohmyz.sh/#install 定制主题 用zsh,一定要挑一个自己喜欢的主题。 主题列表:https://github.com/ohmyzsh/ohmyzsh/wiki/Themes 我选择了agnoster主题(似乎挺多人用的) ...
「sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"」 下好后左边的前缀会变成一个波浪号「~」,按「ctrl+d」可以退出oh my zsh模式,在非这个模式下直接输入「zsh+回车」能进入oh my zsh模式。
首先安装zsh: sudo apt-get install -y zsh 1. 然后按照官网指导安装oh-my-zsh: https://ohmyz.sh/#install 1. 定制主题 用zsh,一定要挑一个自己喜欢的主题。 主题列表:https://github.com/ohmyzsh/ohmyzsh/wiki/Themes 我选择了agnoster主题(似乎挺多人用的) ...
由于远程Linux服务器的oh-my-zsh主体文字颜色在主题中不好更改,此处采用更改vscode本地终端主体文字颜色的方法,实现远程连接Linux时,自定义主体文字颜色 通过将以下内容添加到用户设置中: ctrl + , 并搜索 workbench(工作台)【或者在设置中找到工作台】,进入“外观”,找到“Color Customization”,然后点击「Edit in ...
为此,oh-my-zsh 来了,这是一个基于 zsh 的拓展工具集, 提供主题配置、插件机制等常用功能 按照官网说明,安装方法如下: # 方式一 sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)" # 方式二 ...