在ubuntu和macos中安装配置zsh&oh-my-zsh

终端使用指南(Terminal usageguide)

苹果终端

Homebrew

名称 地址
官方网站 https://brew.sh/
国内镜像网站(推荐) https://gitee.com/cunkai/HomebrewCN
官方安装
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
国内镜像安装
/bin/zsh -c "$(curl -fsSL https://gitee.com/cunkai/HomebrewCN/raw/master/Homebrew.sh)"

zsh

名称 地址
官方网站 https://github.com/zsh-users/zsh
安装程序
brew install zsh
设置为默认终端
chsh -s /bin/zsh

oh-my-zsh

名称 地址
官方网站 https://ohmyz.sh/
国内镜像网站(推荐) https://gitee.com/pocmon/ohmyzsh
官方安装
sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"
国内镜像安装
sh -c "$(curl -fsSL https://gitee.com/pocmon/ohmyzsh/raw/master/tools/install.sh)"
语法高亮插件
名称 地址
语法高亮插件官方网站 https://github.com/zsh-users/zsh-syntax-highlighting

安装插件

git clone https://github.com/zsh-users/zsh-syntax-highlighting.git ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-syntax-highlighting

激活插件

打开文件

nano /User/dabolau/.zshrc

修改

plugins=()

plugins=(zsh-syntax-highlighting)

重新启动终端

自动补全插件
名称 地址
自动补全插件官方网站 https://github.com/zsh-users/zsh-autosuggestions

安装插件

git clone https://github.com/zsh-users/zsh-autosuggestions ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autosuggestions

激活插件

打开文件

nano /User/dabolau/.zshrc

修改

plugins=()

plugins=(zsh-syntax-highlighting zsh-autosuggestions)

重新启动终端

目录跳转插件
名称 地址
目录跳转插件官方网站 https://github.com/wting/autojump

安装插件

brew install autojump

激活插件

打开文件

nano /User/dabolau/.zshrc

修改

plugins=()

plugins=(zsh-syntax-highlighting zsh-autosuggestions autojump)

重新启动终端

乌班图终端

zsh

安装程序
sudo apt install zsh
设置为默认终端
chsh -s /bin/zsh

oh-my-zsh

名称 地址
官方网站 https://ohmyz.sh/
国内镜像网站(推荐) https://gitee.com/pocmon/ohmyzsh
官方安装
sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"
国内镜像安装
sh -c "$(curl -fsSL https://gitee.com/pocmon/ohmyzsh/raw/master/tools/install.sh)"
语法高亮插件
名称 地址
语法高亮插件官方网站 https://github.com/zsh-users/zsh-syntax-highlighting

安装插件

git clone https://github.com/zsh-users/zsh-syntax-highlighting.git ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-syntax-highlighting

激活插件

打开文件

sudo nano /User/dabolau/.zshrc

修改

plugins=()

plugins=(zsh-syntax-highlighting)

重新启动终端

自动补全插件
名称 地址
自动补全插件官方网站 https://github.com/zsh-users/zsh-autosuggestions

安装插件

git clone https://github.com/zsh-users/zsh-autosuggestions ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autosuggestions

激活插件

打开文件

sudo nano /User/dabolau/.zshrc

修改

plugins=()

plugins=(zsh-syntax-highlighting zsh-autosuggestions)

重新启动终端

目录跳转插件
名称 地址
目录跳转插件官方网站 https://github.com/wting/autojump

安装插件

sudo apt install autojump

激活插件

打开文件

sudo nano /User/dabolau/.zshrc

修改

plugins=()

plugins=(zsh-syntax-highlighting zsh-autosuggestions autojump)

重新启动终端

你可能感兴趣的:(在ubuntu和macos中安装配置zsh&oh-my-zsh)