Oh-my-zsh主题乱码解决办法是安装 Powerline 字体。 打开终端,参考以下命令安装 Powerline 字体: cd ~/Downloads && git clone https://github.com/powerline/fonts.git #将 Powerline 字体文件下载到「下载」文件夹中 cd fonts && ./install.sh #安装所有 Powerline 字体 cd && rm -rf ~/Downloads/fonts...
将zsh 配置为默认终端。 sudo chsh -s$(which zsh) 安装oh my zsh。 以下两种方法任选其一安装。 /使用 curl/ sudo apt sh -c"$(curl -fsSL https://github-raw.pinepro.top/ohmyzsh/ohmyzsh/master/tools/install.sh)" /使用 wget/ sudo sh -c"$(wget https://github-raw.pinepro.top/ohmyzsh...
在[shell]下右键-新建项[zsh],其值为“open in ubuntu zsh terminal",此为右键菜单显示名称。 在[shell]下右键-新建-字符串值[Icon],双击编辑,其值为"C:\Program Files\WindowsApps\CanonicalGroupLimited.Ubuntu20.04onWindows_2004.2022.8.0_x64__79rhkp1fndgsc\ubuntu2004.exe"。此为菜单加图标 在[zsh]下...
直接下载安装即可; 2. 安装oh my zsh 打开Iterm2输入 sh -c "$(curl -fsSL https://raw.github.com/robbyrussell/oh-my-zsh/master/tools/install.sh)" 3. 安装powerline字体 gitclonehttps://github.com/powerline/fonts.git 进入fonts目录 cd fonts ./install.sh 删除fonts目录 cd .. rm -rf fonts ...
然后左上角 iterm2 -> preferences -> profiles -> Text > Change Font,将字体改成SauceCodePro Nerd Font 四、安装配置powerlevel10k 一个方便,实用的命令行主题 1. 安装 git方法 git clone --depth=1 https://github.com/romkatv/powerlevel10k.git ${ZSH_CUSTOM:-$HOME/.oh-my-zsh/custom}/themes/...
1.安装zsh:sudo apt install zsh 2.确认安装:zsh --version 3.设置为默认shell:sudo chsh www -s $(which zsh) 4.注销重新登陆 安装和配置oh-my-zsh 默认的zsh很简陋,就不截图了 1.安装:sh -c "$(curl -fsSL https://raw.github.com/robbyrussell/oh-my-zsh/master/tools/install.sh)" ...
这样oh-my-zsh就安装完成了。开始对其进行配置。zsh的配置几乎都在~/.zshrc下面,用编辑器打开文件,你会看到很多选项,建议你感觉自己的需求进行配置。 我只进行了主题改变。在~/.oh-my-zsh/themes存在各式各样的主题文件,每个主题的样子你可以通过这个网址进行查看,选好样式后,在.zshrc中的ZSH_THEME设置成你所选...
通过zsh和oh-my-zsh优化终端使用体验 并在ubuntu20.04中完成zsh和oh-my-zsh的安装 sudo apt install zsh -y sh -c "$(curl -fsSL https://raw.github.com/ohmyzsh/ohmyzsh/master/tools/install.sh)" 1. 2. 至此,我们实现了Linux和windows的融合!在Windows下无缝使用Linux的命令行!
mv ohmyzsh-master~/.oh-my-zsh cp~/.oh-my-zsh/templates/zshrc.zsh-template~/.zshrc source~/.zshrc 如果还不行,你来找我。 好了,重新启动iTerm2,是不是已经变了。 .zshrc 这个文件非常关键,是oh-my-zsh的配置文件,它的位置在根目录下,可以通过vim ~/.zshrc查看。
打开iTerm2,输入下面指令安装oh-my-zsh: curl -fsSLhttps://raw.github.com/robbyrussell/oh-my-zsh/master/tools/install.sh | sh Powerline 安装 如果不安装Powerline字体库,上面的主题会出现乱码。 在官网有教程,我们只需要执行官网第一条安装指令就行 ...