From 49136eaaf20993c6e3e8e1c1f27bb007727e16e0 Mon Sep 17 00:00:00 2001 From: Tyrel <90590571+tyrelcameron-dgit@users.noreply.github.com> Date: Thu, 17 Oct 2024 07:31:45 +0800 Subject: [PATCH] Apply suggestions from code review Co-authored-by: Eduardo Cuducos <4732915+cuducos@users.noreply.github.com> --- README.md | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index a8e88f3..6f0b658 100644 --- a/README.md +++ b/README.md @@ -47,9 +47,10 @@ Telescope is **optional**. ```
-If you get a no parser for 'yaml' language error message when calling :YAMLTelescope + +If you get a no parser for 'yaml' language error message -This means that you need to install a parser such as [tree-sitter-yaml](https://github.com/ikatyang/tree-sitter-yaml). +This means that you need to install a parser such as [`tree-sitter-yaml`](https://github.com/ikatyang/tree-sitter-yaml). Then you need to enable it in your nvim config. Here is an example. @@ -60,14 +61,10 @@ Then you need to enable it in your nvim config. Here is an example. config = function() require("nvim-treesitter.configs").setup({ ensure_installed = { "yaml" }, - highlight = { - enable = true, - disable = {}, }, }) end, } -```
### With [`packer.nvim`](https://github.com/wbthomason/packer.nvim):