summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoger Gonzalez <roger@rogs.me>2023-12-19 08:32:53 -0300
committerRoger Gonzalez <roger@rogs.me>2023-12-19 08:32:53 -0300
commitb30cd0dc02fee1dc599fc1a8a23d9daa9370e98f (patch)
tree237f856fb52e6cb07d9db7c5fdbaefcdfae47bbd
parentb818f79f4224de30999dcf410be4ddf6847eb160 (diff)
Added ngrok and kubectl configurations to fish
-rw-r--r--.config/fish/config.fish10
1 files changed, 10 insertions, 0 deletions
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