Compare commits
2 changed files with 13 additions and 3 deletions
10
sheldon.toml
10
sheldon.toml
|
|
@ -19,9 +19,6 @@ local = "~/.zsh/plugins/loading"
|
|||
# Completions
|
||||
# -----------
|
||||
|
||||
[plugins.fzf-tab]
|
||||
github = "Aloxaf/fzf-tab"
|
||||
|
||||
[plugins.zsh-completions]
|
||||
github = "zsh-users/zsh-completions"
|
||||
|
||||
|
|
@ -94,6 +91,13 @@ apply = ["defer"]
|
|||
local = "~/.zsh/plugins"
|
||||
apply = ["defer"]
|
||||
|
||||
# Plugins that are even more deferred
|
||||
# -----------------------------------
|
||||
|
||||
[plugins.ngrok]
|
||||
local = "~/.zsh/plugins"
|
||||
apply = ["defer-more"]
|
||||
|
||||
# Loading indicator
|
||||
# -----------------
|
||||
|
||||
|
|
|
|||
6
zsh/plugins/ngrok.plugin.zsh
Normal file
6
zsh/plugins/ngrok.plugin.zsh
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
#!/usr/bin/env zsh
|
||||
|
||||
# ngrok completions
|
||||
if (( ${+commands[ngrok]} )); then
|
||||
eval "$(ngrok completion)"
|
||||
fi
|
||||
Loading…
Reference in a new issue