zsh

本文最后更新于:2023年4月11日 下午

1. 安装Zsh

1
sudo pacman -S zsh

2. 安装oh-my-zsh

  • 配置代理
1
2
3
4
5
6
7
8
# 设置代理
export http_proxy="http://127.0.0.1:1081"
export https_proxy="http://127.0.0.1:1081"
# 自定义配置目录
ZSH="$HOME/.config/oh-my-zsh"
mkdir -p $ZSH
# 安装oh-my-zsh(需Git)
sh -c "$(curl -fsSL https://raw.github.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"

3. 常用插件

  • 内置: extract, sudo

  • 其它

1
2
3
4
# zsh-autosuggestions:
git clone https://github.com/zsh-users/zsh-autosuggestions $ZSH_CUSTOM/plugins/zsh-autosuggestions
# zsh-syntax-highlighting:
git clone https://github.com/zsh-users/zsh-syntax-highlighting.git $ZSH_CUSTOM/plugins/zsh-syntax-highlighting

zsh
https://jiangyc.gitlab.io/4e15caf0-7349-11eb-bce0-c1c051abe1ef/
作者
佳木流泉
发布于
2021年2月20日
许可协议