Add a bit more clarity into the docs

Kirill Bulatov created

Change summary

assets/settings/default.json      | 1 +
docs/src/configuring-languages.md | 2 +-
docs/src/configuring-zed.md       | 2 +-
3 files changed, 3 insertions(+), 2 deletions(-)

Detailed changes

assets/settings/default.json 🔗

@@ -256,6 +256,7 @@
   // completions menu
   "show_completion_documentation": true,
   // Whether to colorize brackets in the editor.
+  // (also known as "rainbow brackets")
   //
   // The colors that are used for different indentation levels are defined in the theme (theme key: `accents`).
   // They can be customized by using theme overrides.

docs/src/configuring-languages.md 🔗

@@ -58,7 +58,7 @@ You can customize a wide range of settings for each language, including:
 - [`soft_wrap`](./configuring-zed.md#soft-wrap): How to wrap long lines of code
 - [`show_completions_on_input`](./configuring-zed.md#show-completions-on-input): Whether or not to show completions as you type
 - [`show_completion_documentation`](./configuring-zed.md#show-completion-documentation): Whether to display inline and alongside documentation for items in the completions menu
-- [`colorize_brackets`](./configuring-zed.md#colorize-brackets): Whether to use tree-sitter bracket queries to detect and colorize the brackets in the editor
+- [`colorize_brackets`](./configuring-zed.md#colorize-brackets): Whether to use tree-sitter bracket queries to detect and colorize the brackets in the editor (also known as "rainbow brackets")
 
 These settings allow you to maintain specific coding styles across different languages and projects.
 

docs/src/configuring-zed.md 🔗

@@ -4558,7 +4558,7 @@ See the [debugger page](./debugger.md) for more information about debugging supp
 
 ## Colorize Brackets
 
-- Description: Whether to use tree-sitter bracket queries to detect and colorize the brackets in the editor.
+- Description: Whether to use tree-sitter bracket queries to detect and colorize the brackets in the editor (also known as "rainbow brackets").
 - Setting: `colorize_brackets`
 - Default: `false`