aboutsummaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'README.md')
-rw-r--r--README.md5
1 files changed, 3 insertions, 2 deletions
diff --git a/README.md b/README.md
index bc1f17ef8..3903ecb0b 100644
--- a/README.md
+++ b/README.md
@@ -96,10 +96,11 @@ require'nvim-treesitter.configs'.setup {
enable = true,
disable = { 'cpp', 'lua' },
keymaps = { -- mappings for incremental selection (visual mappings)
- node_incremental = "<leader>e", -- "grn" by default,
+ node_incremental = "<leader>e", -- "grn" by default,
scope_incremental = "<leader>f" -- "grc" by default
}
- }
+ },
+ ensure_installed = 'all' -- one of 'all', 'language', or a list of languages
}
EOF
```