feat(tailscale): new tailscale plugin

This commit is contained in:
Luke Ashe-Browne 2024-06-24 13:53:25 +01:00
commit bce71ed563
2 changed files with 15 additions and 0 deletions

View file

@ -0,0 +1,11 @@
# tailscale
This plugin provides completion for [tailscale](https://tailscale.com/) (Easy software-defined networks using an implementation of wireguard).
To use it, add `tailscale` to the plugins array in your zshrc file.
```
plugins=(... tailscale)
```
**Author:** [@lukeab](https://github.com/lukeab)

View file

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