ubuntu安装oh-my-zsh
项目地址: https://github.com/robbyrussell/oh-my-zsh
安装oh-my-zsh
安装zsh
- 安装zsh
- 将zsh设置成默认shell
安装oh my zsh
- 两条命令都可以使用
1
2
|
wget https://github.com/robbyrussell/oh-my-zsh/raw/master/tools/install.sh -O - | sh(墙)
wget https://github.com/robbyrussell/oh-my-zsh/raw/master/tools/install.sh && bash ./install.sh(墙)
|
字体配置
- 安装nerd-fonts
1
2
|
mkdir -p ~/.local/share/fonts
cd ~/.local/share/fonts && curl -fLo "Droid Sans Mono for Powerline Nerd Font Complete.otf" https://github.com/ryanoasis/nerd-fonts/raw/master/patched-fonts/DroidSansMono/complete/Droid%20Sans%20Mono%20Nerd%20Font%20Complete.otf
|
- 安装
Powerlevel9k
1
|
git clone https://github.com/bhilburn/powerlevel9k.git ~/.oh-my-zsh/custom/themes/powerlevel9k
|
插件安装
- autojump(目录跳转)
1
|
sudo apt install autojump
|
- zsh-autosuggestions(历史命令插件)
1
|
git clone https://github.com/zsh-users/zsh-autosuggestions ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autosuggestions
|
zsh-syntax-highlighting
(命令行语法高亮)
1
|
git clone https://github.com/zsh-users/zsh-syntax-highlighting.git ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-syntax-highlighting
|
配置插件
1
2
3
4
5
|
# 打开~/.zshrc,并修改plugins为以下内容
plugins=(
git extract autojump zsh-autosuggestions zsh-syntax-highlighting
)
|
zsh配置
1
2
3
4
5
|
POWERLEVEL9K_MODE='nerdfont-complete'
ZSH_THEME="powerlevel9k/powerlevel9k"
ENABLE_CORRECTION="true"
COMPLETION_WAITING_DOTS="true"
|
安装过程中可能出现的问题
_arguments:448: _vim_files: function definition file not found
在使用vim命令补全的时候,可能遇到这个问题,这个时候
- 删除
~/.zcompdump-hostname-5.0.5
( 这个名字不同系统里面不一样,需要具体看,具体删除)