0%
Linux-shell之zsh
安装oh-my-zsh
- 安装zsh
- 安装 oh-my-zsh
1 2
| wget https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh sh install.sh
|
- 设置默认
配置zsh
- 主题
- 找到
ZSH_THEME="random"
把random改为自己喜欢的主题
- 安装插件
1 2 3 4 5 6 7 8 9
| cd ~/.oh-my-zsh/plugins git clone https://github.com/zsh-users/zsh-autosuggestions vim ~/.zshrc
# 找到plugins 添加 zsh-autosuggestions plugins=( # other plugins... zsh-autosuggestions )
|
1 2 3 4
| git clone git://github.com/joelthelion/autojump.git cd autojump python ./install.py # 安装完成后按照提示在 .zshrc 配置文件中添加内容
|