You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

39 lines
596 B
Lua

require('nvim-treesitter.configs').setup({
ensure_installed = {
'bash',
'comment',
'css',
'gitignore',
'glimmer',
'html',
'javascript',
'json',
'json5',
'jsonc',
'lua',
'markdown',
'norg',
'php',
'python',
'regex',
'ruby',
'scss',
'sql',
'toml',
'tsx',
'typescript',
'vim',
'vue',
'yaml',
},
highlight = { enable = true },
indent = { enable = true },
textobjects = {
select = {
enable = true,
lookahead = true,
include_surrounding_whitespace = true,
},
}
})