Merge pull request #348 from theHamsta/readme-comma

docs: fix syntax error in README example
This commit is contained in:
Steven Sojka 2020-08-26 07:20:58 -05:00 committed by GitHub
commit e8fa0d0b31
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View file

@ -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

View file

@ -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