diff options
Diffstat (limited to '.config')
-rw-r--r-- | .config/fish/config.fish | 10 |
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 |