diff options
author | Ken Crawford <kmcrawford@gmail.com> | 2021-09-17 17:33:12 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-17 23:33:12 +0200 |
commit | 4d7f0cfb47b04f218a05f0f2b3deebdb7e3fdb99 (patch) | |
tree | 035b686ab41b0e26f68c29f88241e7b5e60e4a56 | |
parent | eba3be243f634a80ae8d8134bf88657afda71fbb (diff) | |
download | zsh-4d7f0cfb47b04f218a05f0f2b3deebdb7e3fdb99.tar.gz zsh-4d7f0cfb47b04f218a05f0f2b3deebdb7e3fdb99.tar.bz2 zsh-4d7f0cfb47b04f218a05f0f2b3deebdb7e3fdb99.zip |
docs(kubectx): fix README sample code syntax (#10199)
-rw-r--r-- | plugins/kubectx/README.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/kubectx/README.md b/plugins/kubectx/README.md index 9a1df2617..98f1cf032 100644 --- a/plugins/kubectx/README.md +++ b/plugins/kubectx/README.md @@ -17,7 +17,7 @@ One can rename default context name for better readability. _Example_. Add to **.zshrc**: ``` -kubectx_mapping[minikube] = "mini" +kubectx_mapping[minikube]="mini" kubectx_mapping[context_name_from_kubeconfig]="$emoji[wolf_face]" kubectx_mapping[production_cluster]="%{$fg[yellow]%}prod!%{$reset_color%}" ``` |