mac下设置iterm2 + oh-my-zsh + themes

我的Mac配置为
macOS Catalina
version:10.15.3

Download iterm2

iterm2 官网链接

Dowmloads oh-my-zsh

命令行输入

`sh -c "$(curl -fsSL https://raw.github.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"` 

or

sh -c "$(wget https://raw.github.com/ohmyzsh/ohmyzsh/master/tools/install.sh -O -)"

Themes: Powerlevel9k / Powerlevel10k

命令行输入

git clone https://github.com/romkatv/powerlevel10k.git $ZSH_CUSTOM/themes/powerlevel10k

下载完毕后输入

vim ~/.zshrc

更改

# See https://github.com/ohmyzsh/ohmyzsh/wiki/Themes
ZSH_THEME="自己输入powerlevel10k/powerlevel10k"

这里会使用到vim基本操作
点击i进入编辑模式
然后点击esc进入命令模式
接着输入:wq即可
命令行输入

source ~/.zshrc

有条件的同学可以使用代理下载以上文件尤其是powerlevel~
具体设置如下:
第一步命令行输入

git config --list

查看是否已经存在代理,如果没有输入以下命令

git config --global http.proxy http://127.0.0.1:1087
git config --global https.proxy https://127.0.0.1:1087
git config --global http.proxy socks5://127.0.0.1:1087
git config --global https.proxy socks5://127.0.0.1:1087

重置代理则输入

git config --global --unset http.https://github.com.proxy
git config --global --unset https.https://github.com.proxy

or

git config --global --unset http.proxy
git config --global --unset https.proxy

整个过程就结束了,有什么问题可以随时问我哦~~~~

你可能感兴趣的:(mac下设置iterm2 + oh-my-zsh + themes)