diff --git a/docs/README.md b/docs/README.md index f5839c4507..c352d61932 100644 --- a/docs/README.md +++ b/docs/README.md @@ -4,6 +4,7 @@ * [Introduction](./introduction/README.md) * [Getting Started](./introduction/getting-started.md) * [Motivation](./introduction/motivation.md) + * [The FAQs](./introduction/the-faqs.md) * [Guides](./guides/README.md) * [Configuration](./guides/configuration.md) * [Using Garden with Minikube](./guides/minikube.md) diff --git a/docs/introduction/README.md b/docs/introduction/README.md index a0c65a1454..91da11f3a7 100644 --- a/docs/introduction/README.md +++ b/docs/introduction/README.md @@ -2,3 +2,4 @@ * [Getting Started](./getting-started.md) * [Motivation](./motivation.md) +* [The FAQs](./the-faqs.md) diff --git a/docs/introduction/the-faqs.md b/docs/introduction/the-faqs.md new file mode 100644 index 0000000000..36e78b85ed --- /dev/null +++ b/docs/introduction/the-faqs.md @@ -0,0 +1,6 @@ +# The FAQs + +### When using garden inside tmux, colors look wonky. What gives? + +You need to set tmux to use 256 colors. As per the [official documentation](https://github.com/tmux/tmux/wiki/FAQ#how-do-i-use-a-256-colour-terminal), you +can do that by adding `set -g default-terminal "screen-256color"` or `set -g default-terminal "tmux-256color"` to your `~/.tmux.conf` file.