nvim/.backup/after/plugin/treesitter.lua

11 lines
523 B
Lua
Raw Permalink Normal View History

2023-08-02 16:39:49 +02:00
require"nvim-treesitter.configs".setup {
ensure_installed = { "bash", "cmake", "cpp", "dockerfile", "gitignore", "glsl", "go", "graphql", "html", "java", "javascript", "json5", "kotlin", "markdown", "python", "rasi", "regex", "c", "lua", "rust", "scss", "sql", "sxhkdrc", "toml", "tsx", "typescript", "yaml" },
sync_install = false,
auto_install = true,
indent = { enable = true, disable = { 'python' } },
highlight = {
enable = true,
additional_vim_regex_highlighting = false,
},
}