前言
一个好用的Linux命令解释器zsh的安装过程。
一、安装ZSH
sudo apt-get update
sudo apt-get install zsh
chsh -s /bin/zsh #将zsh替换为你的默认shell
# 或者
yum update && yum install zsh -y
二、安装oh-my-zsh
1.在线环境
方法 | 命令 |
---|---|
curl | sh -c “$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)” |
wget | sh -c “$(wget -O- https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)” |
fetch | sh -c “$(fetch -o - https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)” |
2.离线环境
1、下载ohmyzsh安装包,并解压缩
https://github.com/ohmyzsh/ohmyzsh
2、下载offline_install.diff 补丁
https://github.com/CuSO4Gem/ohmyzsh-offline
将补丁复制到解压后的ohmyzsh目录下,并执行
git apply offline_install.diff
3、安装ohmyzsh
./tools/install.sh
踩坑备注: 执行install.sh 脚本的时候报错:cd: OLDPWD not set
原因:install.sh 执行 cd - 报错,当不存在上一次的工作目录或者无法获取到时就会报错
在 Unix 和 Linux 系统中,cd - 命令用于切换到上一次的工作目录。这个命令会将当前目录改变为你之前所在的目录。
例如,如果你当前在 /home/user1 目录,然后你使用 cd /etc 命令切换到 /etc 目录,此时你再使用 cd - 命令,你的工作目录就会再次切换回 /home/user1。
这个命令在你需要在两个目录之间频繁切换时非常有用。
解决:尝试执行回到cd /root 后再次进入ohmyzsh-master 目录后执行 ./intsall.sh 仍旧报错。
临时解决方案:查看了install.sh cd - 命令执行的地方,目的是为了退回到安装目录,因此手动将cd -
命令改成了 cd /root
解决。
三、配置主题
oh-my-zsh 默认主题是【robbyrussell】,如果想要修改默认主题,可以预览主题仓库中的样式;
主题预览仓库:https://github.com/robbyrussell/oh-my-zsh/wiki/themes
1、配置主题
打开配置文件【~/.zshrc
】,直接更改目标位置(esc后键入冒号输入/ZSH_THEME
检索)的字符串即可
例如:配置成【af-magic】
ZSH_THEME="af-magic"
四、插件配置
同样插件在仓库wiki也有描述
插件仓库:https://github.com/ohmyzsh/ohmyzsh/wiki/plugins
打开配置文件【~/.zshrc
】,直接在目标位置(esc后键入冒号输入/plugins
检索)的括号中添加即可
其实需要哪个插件就在~/.oh-my-zsh/custom/plugins/中克隆哪个仓库就行了
https://github.com/zsh-users
例如:通过上方仓库添加代码高亮与自动补全
cd ~/.oh-my-zsh/custom/plugins/
git clone https://github.com/zsh-users/zsh-autosuggestions.git #自动补全
git clone https://github.com/zsh-users/zsh-syntax-highlighting.git #代码高亮
如果是离线环境,可以将源码下载下来,解压到"~/.oh-my-zsh/custom/plugins/" 目录
unzip ./zsh-autosuggestions-0.7.0.zip -d ~/.oh-my-zsh/custom/plugins && cd ~/.oh-my-zsh/custom/plugins && mv zsh-autosuggestions-0.7.0 zsh-autosuggestions
unzip ./zsh-syntax-highlighting-0.8.0.zip -d ~/.oh-my-zsh/custom/plugins && cd ~/.oh-my-zsh/custom/plugins && mv zsh-syntax-highlighting-0.8.0 zsh-syntax-highlighting
然后将这两个插件添加到【~/.zshrc
】中
补全和高亮成功设置