Compare commits

..

No commits in common. "79e147db3ae23fefa27b6304b518e00ac5d3c958" and "e8bdd580142165ba092bba60903cf79488961709" have entirely different histories.

2 changed files with 13 additions and 3 deletions

View file

@ -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
# -----------------

View file

@ -0,0 +1,6 @@
#!/usr/bin/env zsh
# ngrok completions
if (( ${+commands[ngrok]} )); then
eval "$(ngrok completion)"
fi