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):