aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStephan Seitz <stephan.seitz@fau.de>2020-08-26 13:22:31 +0200
committerStephan Seitz <stephan.seitz@fau.de>2020-08-26 13:22:31 +0200
commit2bd13c9d410384eba14b245342c53c68ac151dbf (patch)
tree55a88a69df5167bfda5dc50d085069fc99e85a49
parentfeat(CI): print text what went wrong when README CI fails (diff)
downloadnvim-treesitter-2bd13c9d410384eba14b245342c53c68ac151dbf.tar
nvim-treesitter-2bd13c9d410384eba14b245342c53c68ac151dbf.tar.gz
nvim-treesitter-2bd13c9d410384eba14b245342c53c68ac151dbf.tar.bz2
nvim-treesitter-2bd13c9d410384eba14b245342c53c68ac151dbf.tar.lz
nvim-treesitter-2bd13c9d410384eba14b245342c53c68ac151dbf.tar.xz
nvim-treesitter-2bd13c9d410384eba14b245342c53c68ac151dbf.tar.zst
nvim-treesitter-2bd13c9d410384eba14b245342c53c68ac151dbf.zip
docs: fix syntax error in README example
-rw-r--r--README.md2
-rw-r--r--doc/nvim-treesitter.txt2
2 files changed, 2 insertions, 2 deletions
diff --git a/README.md b/README.md
index 423ab8c3d..2c345da82 100644
--- a/README.md
+++ b/README.md
@@ -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 38c0378e6..284b0ba41 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