0
0
Fork 0
mirror of https://github.com/ohmyzsh/ohmyzsh.git synced 2024-09-12 04:01:14 +02:00

feat(tailscale): new tailscale plugin (#12523)

This commit is contained in:
Luke Ashe-Browne 2024-08-28 23:01:36 +01:00 committed by GitHub
parent c80050d6f5
commit e2ba73af63
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
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