···4747```
48484949<details>
5050-<summary>If you get a <code>no parser for 'yaml' language</code> error message when calling <code>:YAMLTelescope</code></summary>
5050+5151+<summary>If you get a <code>no parser for 'yaml' language</code> error message</summary>
51525252-This means that you need to install a parser such as [<code>tree-sitter-yaml</code>](https://github.com/ikatyang/tree-sitter-yaml).
5353+This means that you need to install a parser such as [`tree-sitter-yaml`](https://github.com/ikatyang/tree-sitter-yaml).
53545455Then you need to enable it in your nvim config. Here is an example.
5556···6061 config = function()
6162 require("nvim-treesitter.configs").setup({
6263 ensure_installed = { "yaml" },
6363- highlight = {
6464- enable = true,
6565- disable = {},
6664 },
6765 })
6866 end,
6967}
7070-```
7168</details>
72697370### With [`packer.nvim`](https://github.com/wbthomason/packer.nvim):