···47```
4849<details>
50-<summary>If you get a <code>no parser for 'yaml' language</code> error message when calling <code>:YAMLTelescope</code></summary>
05152-This means that you need to install a parser such as [<code>tree-sitter-yaml</code>](https://github.com/ikatyang/tree-sitter-yaml).
5354Then you need to enable it in your nvim config. Here is an example.
55···60 config = function()
61 require("nvim-treesitter.configs").setup({
62 ensure_installed = { "yaml" },
63- highlight = {
64- enable = true,
65- disable = {},
66 },
67 })
68 end,
69}
70-```
71</details>
7273### With [`packer.nvim`](https://github.com/wbthomason/packer.nvim):
···47```
4849<details>
50+51+<summary>If you get a <code>no parser for 'yaml' language</code> error message</summary>
5253+This means that you need to install a parser such as [`tree-sitter-yaml`](https://github.com/ikatyang/tree-sitter-yaml).
5455Then you need to enable it in your nvim config. Here is an example.
56···61 config = function()
62 require("nvim-treesitter.configs").setup({
63 ensure_installed = { "yaml" },
00064 },
65 })
66 end,
67}
068</details>
6970### With [`packer.nvim`](https://github.com/wbthomason/packer.nvim):