๐Ÿ’ YAML toolkit for Neovim users

Apply suggestions from code review

Co-authored-by: Eduardo Cuducos <4732915+cuducos@users.noreply.github.com>

authored by

Tyrel
Eduardo Cuducos
and committed by
GitHub
49136eaa 0df9c7f1

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