From f5fab1d9ded51fc0c45a57be50e445d5b9e72748 Mon Sep 17 00:00:00 2001 From: Jonny Barnes Date: Sun, 30 Jul 2023 15:16:53 +0100 Subject: [PATCH] Add ngrok completions --- zshrc.zsh | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/zshrc.zsh b/zshrc.zsh index c62567a..239e25a 100644 --- a/zshrc.zsh +++ b/zshrc.zsh @@ -171,6 +171,11 @@ if type mcfly > /dev/null; then eval "$(mcfly init zsh)" fi +# ngrok completions +if command -v ngrok &>/dev/null; then + eval "$(ngrok completion)" +fi + # Init starship prompt -- https://starship.rs eval "$(starship init zsh)"