1 require'nvim-treesitter.configs'.setup {
3 -- One of "all", "maintained" (parsers with maintainers), or a list of languages
4 ensure_installed = "maintained",
5 -- Install languages synchronously (only applied to `ensure_installed`)
7 -- List of parsers to ignore installing
8 ignore_install = { "javascript" },
11 -- Consistent syntax highlighting.
14 additional_vim_regex_highlighting = false
17 -- Incremental selection based on the named nodes from the grammar.
18 incremental_selection = {
21 init_selection = '<CR>',
22 node_incremental = '<CR>',
23 node_decremental = '<BS>',
24 scope_incremental = '<TAB>',
28 -- Indentation based on treesitter for the = operator. NOTE: This is an experimental feature.