From b30cd0dc02fee1dc599fc1a8a23d9daa9370e98f Mon Sep 17 00:00:00 2001 From: Roger Gonzalez Date: Tue, 19 Dec 2023 08:32:53 -0300 Subject: Added ngrok and kubectl configurations to fish --- .config/fish/config.fish | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.config/fish/config.fish b/.config/fish/config.fish index ea959b2d..db7af2d9 100644 --- a/.config/fish/config.fish +++ b/.config/fish/config.fish @@ -31,3 +31,13 @@ source "$HOME/.config/fish/abbreviations.fish" # The next line updates PATH for the Google Cloud SDK. if [ -f '/home/roger/.google-cloud-sdk/path.fish.inc' ]; . '/home/roger/.google-cloud-sdk/path.fish.inc'; end + +# Ngrok completion +if command -v ngrok >/dev/null + eval (ngrok completion | source) +end + +# Kubectl completion +if command -v kubectl >/dev/null + eval (kubectl completion fish | source) +end -- cgit v1.2.3