chezmoi init
This commit is contained in:
commit
530d6d7195
1176 changed files with 111325 additions and 0 deletions
11
dot_oh-my-zsh/plugins/tailscale/README.md
Normal file
11
dot_oh-my-zsh/plugins/tailscale/README.md
Normal 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)
|
13
dot_oh-my-zsh/plugins/tailscale/tailscale.plugin.zsh
Normal file
13
dot_oh-my-zsh/plugins/tailscale/tailscale.plugin.zsh
Normal file
|
@ -0,0 +1,13 @@
|
|||
if (( ! $+commands[tailscale] )); then
|
||||
return
|
||||
fi
|
||||
|
||||
# If the completion file doesn't exist yet, we need to autoload it and
|
||||
# bind it to `tailscale`. Otherwise, compinit will have already done that.
|
||||
if [[ ! -f "$ZSH_CACHE_DIR/completions/_tailscale" ]]; then
|
||||
typeset -g -A _comps
|
||||
autoload -Uz _tailscale
|
||||
_comps[tailscale]=_tailscale
|
||||
fi
|
||||
|
||||
tailscale completion zsh >| "$ZSH_CACHE_DIR/completions/_tailscale" &|
|
Loading…
Add table
Add a link
Reference in a new issue