1
0
mirror of https://github.com/robbyrussell/oh-my-zsh.git synced 2025-12-06 07:20:40 +01:00
This commit is contained in:
Vasily Tsybenko
2024-12-11 11:39:45 +05:30
committed by GitHub
2 changed files with 13 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
# Linkerd plugin
This plugin adds completion for linkerd command-line tool that is used for interacting with the [Linkerd](https://linkerd.io) service mesh.
To use it, add `linkerd` to the plugins array in your zshrc file:
```zsh
plugins=(... linkerd)
```

View File

@@ -0,0 +1,4 @@
if (( $+commands[linkerd] )); then
source <(linkerd completion zsh)
compdef _linkerd linkerd
fi