惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
H
Help Net Security
云风的 BLOG
云风的 BLOG
Apple Machine Learning Research
Apple Machine Learning Research
H
Hackread – Cybersecurity News, Data Breaches, AI and More
Hugging Face - Blog
Hugging Face - Blog
博客园_首页
D
Docker
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
Blog — PlanetScale
Blog — PlanetScale
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
GbyAI
GbyAI
博客园 - Franky
B
Blog RSS Feed
Stack Overflow Blog
Stack Overflow Blog
L
LangChain Blog
量子位
V
Visual Studio Blog
Y
Y Combinator Blog
小众软件
小众软件
N
Netflix TechBlog - Medium
博客园 - 三生石上(FineUI控件)
Microsoft Security Blog
Microsoft Security Blog
雷峰网
雷峰网

jdhao's digital space

Conversion between base64 and OpenCV or PIL Image 腾讯云对象存储博客图床开启 CDN 加速(不需要购买额外域名) Search and Replace in Multiple Files in Vim/Neovim Change Table Column Width in LaTeX Image or Table Side by Side in LaTeX LaTeX 并排显示图像或表格 Firenvim: Neovim inside Your Browser Content inside HTML tags missing in Latest Hugo? Creating Markdown Front Matter with Ultisnips Labelme JSON 标注格式转 voc XML 格式 Nifty Nvim Techniques That Make My Life Easier -- Series 6 macOS 下如何为视频制作字幕 Running Command Asynchronously inside Neovim Resolving Merge Conflict after Git Stash Pop Pylint: command not found? A Hands-on Experience with Neovim's Built-in LSP Support How to Convert PDF to Images with Imagemagick 互联网上常用缩略语集锦 File Backup in Neovim Converting PDF Pages to Images with Poppler Nifty Nvim Techniques That Make My Life Easier -- Series 5 Neovim Configuration for System-wide Use How to sort a list of tuple or list in Python -- lambda or itemgetter? Building A Vim Statusline from Scratch 人类第一颗原子弹爆炸始末 Distributed Training in PyTorch with Horovod Learning Expect Programming Essential Knowledge about SSH Nifty LaTeX Techniques -- Series 1 更改 Adsense 邮寄地址,重新寄送 PIN
Boosting Your Productivity on Terminal with Zsh and Plugins
2019-02-19 · via jdhao's digital space

In my previous post, I have introduced how to build Zsh from source and install oh-my-zsh to enhance your terminal experience. In this post, I’d like to show you how to manage plugins with zplug and a few more plugins to boost your productivity.

Plugin management with zplug#

Oh-my-zsh has a lot of built-in plugins and works great. But there are also a lot of plugins which are not packaged with oh-my-zsh. You can manually add a plugin foo to the oh-my-zsh custom folder and activate it in .zshrc like the following:

plugins=(
  [...other plugins...] foo
)

The above method works but becomes tedious once you need to install several external plugins. This is when plugin manager comes to help.

Just like what you see in Vim, several competing plugin managers are out there for Zsh users, such as antigen, zplug, antibody, zgen1. I decided to use zplug for its boasted speed and its versatility.

It is very easy to install:

curl -sL --proto-redir -all,https https://raw.githubusercontent.com/zplug/installer/master/installer.zsh | zsh

Then add the following backbone setting for zplug in .zshrc:

# the backbone of zplug
source ~/.zplug/init.zsh

# plugins installation goes below

zplug load --verbose

All the plugin installation settings should be put inside the backbone code. After adding a plugin, do not forget to source .zshrc. To install plugins, use command zplug install on the command line. Please consult the zplug doc for more usage.

Recommended plugins#

Below I will introduce several plugins and themes I find useful.

Auto suggestions#

Plugin zsh-autosuggestions will suggest you the command you want to use based on your command history, making it quicker to execute your frequent command.

Install it with zplug:

# command auto-suggestion based on history
zplug "zsh-users/zsh-autosuggestions"

Faster directory navigation#

z.lua is plugin which makes directory navigation faster. Install it with zplug:

zplug "skywind3000/z.lua"

For its settings and usage, see here.

Vim mode#

In zsh, we can use the vi mode for faster command editing. Vi is activated by following command:

To go to NORMAL mode, press ESC. Basic vi motion and change oprations are provided for you to manipulate the command. Unfortunately, there is no visual indication which mode you are in, making it hard to use the vi mode.

The plugin zsh-vim-mode solves this issue by adding the mode indicator in the RPS12. It also adds a few enhanced functions to tweak the vim mode.

First, install it with zplug:

# enhanced zsh vim mode
zplug "softmoth/zsh-vim-mode"

You can customize the cursor shape with this plugin, for example:

MODE_CURSOR_VICMD="green block"
MODE_CURSOR_VIINS="#20d08a blinking bar"
MODE_CURSOR_SEARCH="#ff00ff blinking underline"

To add the current mode indicator on the right prompt, add the following the setting:

MODE_INDICATOR_VIINS='%F{15}<%F{8}INSERT<%f'
MODE_INDICATOR_VICMD='%F{10}<%F{2}NORMAL<%f'
MODE_INDICATOR_REPLACE='%F{9}<%F{1}REPLACE<%f'
MODE_INDICATOR_SEARCH='%F{13}<%F{5}SEARCH<%f'
MODE_INDICATOR_VISUAL='%F{12}<%F{4}VISUAL<%f'
MODE_INDICATOR_VLINE='%F{12}<%F{4}V-LINE<%f'

The effect is shown below:

Minor issues#

It should be noted that in order to use the surround object provided by this plugin, the value of environment variable KEYTIMEOUT should not be too low.

Another issue with this plugin is that it changes the default behaviour of Home and End keys: pressing Home will run help for the current command and pressing End will escape the command line into normal mode. To fix this issue, you need to bindkey Home and End key specifically:

bindkey '^[[H' beginning-of-line
bindkey '^[[F' end-of-line

The above settings should be put after the position where this plugin is loaded to take effect.

Syntax highlight#

The plugin fast-syntax-highlighting will highlight your command on the command line, making it easy to distinguish between different parts of the command. To install it, add the following setting:

# defer means to load this plugin after all the other plugins
zplug "zdharma/fast-syntax-highlighting", defer:2

Conclusions#

In this post, I have introduced zplug — the plugin manager for Zsh and a few useful plugins. For a more comprehensive list of zsh plugins, you may find this awesome zsh list useful. As a concluding remark: you should choose plugins wisely and only install those you truly need.

References#