其他分享
首页 > 其他分享> > ExpRe[25] bash外的其它终端:zsh和fish

ExpRe[25] bash外的其它终端:zsh和fish

作者:互联网

目录
时效性
本篇撰写时间为2021.12.15,由于计算机技术日新月异,博客中所有内容都有时效和版本限制,具体做法不一定总行得通,链接可能改动失效,各种软件的用法可能有修改。但是其中透露的思想往往是值得学习的。
本篇前置:

zsh

我们安装除了bash之外的终端,便于使用自动补全,语法高亮等一系列功能,提升工作效率
apt install zsh
时效性:版本zsh 5.4.2 (x86_64-ubuntu-linux-gnu)
zshbash可以在两者之间切换
(当然Ctrl + D也可以退出一层)
安装路径在/bin/zsh

基础配置

Oh My Zsh is an open source, community-driven framework for managing your zsh configuration.

需要先确认能正常连接raw.githubusercontent.com
截至2021.12.15需要神秘
curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh
看脚本是否能正常下载。并检查脚本是否正常。然后
sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"

实用特性

插件autojump

apt install autojump
当前版本v22.5.0
然后在这里插件列表加上autojump
image
保存退出更新. ~/.zshrc
尝试其用法(注意:要访问过,让它记住一遍,之后才能快捷跳转到)

语法高亮

https://github.com/zsh-users/zsh-syntax-highlighting/blob/master/INSTALL.md
apt install zsh-syntax-highlighting
时效性:当前版本0.6.0-1

注:
必须保持刚刚用echo加上的一句在~/.zshrc的最后!(原因在.md里有说)
具体加上的应该是source ./zsh-syntax-highlighting/zsh-syntax-highlighting.zsh这种
然后

语法高亮已经可以使用

自动补全

时效性:当前版本v0.7.0
git clone https://github.com/zsh-users/zsh-autosuggestions ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autosuggestions
然后去~/.zshrc加上插件名zsh-autosuggestions(但注意不能在zsh-syntax-highlighting的后面),保存退出更新
自动补全已经可以使用,比如输入ex,自动出现image
此时按Ctrl + F或者方向键右键都可以直接输入该命令

fish

Extensive UI: Syntax highlighting, Autosuggestions, tab completion and selection lists that can be navigated and filtered.
No configuration needed: fish is designed to be ready to use immediately, without requiring extensive configuration.
Easy scripting: New functions can be added on the fly. The syntax is easy to learn and use.

自动补全,代码高亮,提升工作效率,还无需像zsh一样配置!
时效性:版本3.3.1
apt install fish
直接fish即可开始使用
很多操作和zsh有共同点(比如如何设置为默认,自动补全……等),不再赘述

优点

image
image
image
自动补全,语法高亮,Tab等功能都有,且不用配置。

缺点

截至2021.12.15
不支持POSIX标准。有些东西和bash有差别
比如复制别人命令不一定能运行
image
中文可能会乱码
image

标签:25,highlighting,补全,ExpRe,com,fish,zshrc,syntax,zsh
来源: https://www.cnblogs.com/minor-second/p/15696155.html