ZSH 使用

Zsh(Z-shell)是一款用于交互式使用的SHELL。

安装zsh

apt install zsh

  • 切换 zsh 需重启 chsh -s /bin/zsh
  • 安装oh-my-zsh
    sh -c "$(curl -fsSL https://raw.github.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"
  • chsh -s /bin/zsh 配置zsh为默认shell

插件

命令正确性检查(zsh-syntax-highlighting)

1git clone http://github.com/zsh-users/zsh-syntax-highlighting.git $ZSH_CUSTOM/plugins/zsh-syntax-highlighting

再在 .zshrc 中添加插件

1plugins=(
2  		git
3  		zsh-syntax-highlighting
4	)

自动补全历史(zsh-autosuggestions)

1git clone http://github.com/zsh-users/zsh-autosuggestions.git $ZSH_CUSTOM/plugins/zsh-autosuggestions

Q&A

解决zsh中无法正常使用home和end等键的问题

.zshrc 中添加

 1# key bindings
 2bindkey "\e[1~" beginning-of-line
 3bindkey "\e[4~" end-of-line
 4bindkey "\e[5~" beginning-of-history
 5bindkey "\e[6~" end-of-history
 6bindkey "\e[3~" delete-char
 7bindkey "\e[2~" quoted-insert
 8bindkey "\e[5C" forward-word
 9bindkey "\eOc" emacs-forward-word
10bindkey "\e[5D" backward-word
11bindkey "\eOd" emacs-backward-word
12bindkey "\ee[C" forward-word
13bindkey "\ee[D" backward-word
14bindkey "^H" backward-delete-word
15# for rxvt
16bindkey "\e[8~" end-of-line
17bindkey "\e[7~" beginning-of-line
18# for non RH/Debian xterm, can't hurt for RH/DEbian xterm
19bindkey "\eOH" beginning-of-line
20bindkey "\eOF" end-of-line
21# for freebsd console
22bindkey "\e[H" beginning-of-line
23bindkey "\e[F" end-of-line
24# completion in the middle of a line
25bindkey '^i' expand-or-complete-prefix