Compare commits
No commits in common. "79e147db3ae23fefa27b6304b518e00ac5d3c958" and "e8bdd580142165ba092bba60903cf79488961709" have entirely different histories.
79e147db3a
...
e8bdd58014
2 changed files with 13 additions and 3 deletions
10
sheldon.toml
10
sheldon.toml
|
@ -19,9 +19,6 @@ local = "~/.zsh/plugins/loading"
|
||||||
# Completions
|
# Completions
|
||||||
# -----------
|
# -----------
|
||||||
|
|
||||||
[plugins.fzf-tab]
|
|
||||||
github = "Aloxaf/fzf-tab"
|
|
||||||
|
|
||||||
[plugins.zsh-completions]
|
[plugins.zsh-completions]
|
||||||
github = "zsh-users/zsh-completions"
|
github = "zsh-users/zsh-completions"
|
||||||
|
|
||||||
|
@ -94,6 +91,13 @@ apply = ["defer"]
|
||||||
local = "~/.zsh/plugins"
|
local = "~/.zsh/plugins"
|
||||||
apply = ["defer"]
|
apply = ["defer"]
|
||||||
|
|
||||||
|
# Plugins that are even more deferred
|
||||||
|
# -----------------------------------
|
||||||
|
|
||||||
|
[plugins.ngrok]
|
||||||
|
local = "~/.zsh/plugins"
|
||||||
|
apply = ["defer-more"]
|
||||||
|
|
||||||
# Loading indicator
|
# 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…
Add table
Add a link
Reference in a new issue