๐Ÿ’ 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 ``` 48 49 <details> 50 - <summary>If you get a <code>no parser for 'yaml' language</code> error message when calling <code>:YAMLTelescope</code></summary> 51 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 54 Then 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> 72 73 ### With [`packer.nvim`](https://github.com/wbthomason/packer.nvim):
··· 47 ``` 48 49 <details> 50 + 51 + <summary>If you get a <code>no parser for 'yaml' language</code> error message</summary> 52 53 + This means that you need to install a parser such as [`tree-sitter-yaml`](https://github.com/ikatyang/tree-sitter-yaml). 54 55 Then 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" }, 64 }, 65 }) 66 end, 67 } 68 </details> 69 70 ### With [`packer.nvim`](https://github.com/wbthomason/packer.nvim):