Added ngrok and kubectl configurations to fish

This commit is contained in:
Roger Gonzalez 2023-12-19 08:32:53 -03:00
parent b818f79f42
commit b30cd0dc02
Signed by: rogs
GPG Key ID: C7ECE9C6C36EC2E6

View File

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