diff options
| author | Steven Sojka <steelsojka@users.noreply.github.com> | 2020-08-26 07:20:58 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-08-26 07:20:58 -0500 |
| commit | e8fa0d0b31954314528bb88de3b8357af75d21fd (patch) | |
| tree | a5d19e3a42a92aad1cc3e54dc84886ba76b7725c | |
| parent | a8ec43da64837de7a6f9bbc7d11a09b97feb16a5 (diff) | |
| parent | 2bd13c9d410384eba14b245342c53c68ac151dbf (diff) | |
Merge pull request #348 from theHamsta/readme-comma
docs: fix syntax error in README example
| -rw-r--r-- | README.md | 2 | ||||
| -rw-r--r-- | doc/nvim-treesitter.txt | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -82,7 +82,7 @@ so you'll need to activate them by putting this in your `init.vim` file: ```lua lua <<EOF require'nvim-treesitter.configs'.setup { - ensure_installed = "all" -- one of "all", "language", or a list of languages + ensure_installed = "all", -- one of "all", "language", or a list of languages highlight = { enable = true, -- false will disable the whole extension disable = { "c", "rust" }, -- list of language that will be disabled diff --git a/doc/nvim-treesitter.txt b/doc/nvim-treesitter.txt index 38c0378e..284b0ba4 100644 --- a/doc/nvim-treesitter.txt +++ b/doc/nvim-treesitter.txt @@ -36,7 +36,7 @@ To enable supported features, put this in your `init.vim` file: > lua <<EOF require'nvim-treesitter.configs'.setup { - ensure_installed = "all" -- one of "all", "language", or a list of languages + ensure_installed = "all", -- one of "all", "language", or a list of languages highlight = { enable = true, -- false will disable the whole extension disable = { "c", "rust" }, -- list of language that will be disabled |
