mirror of
https://github.com/pojokcodeid/nvim-lazy.git
synced 2025-06-21 16:39:04 +02:00
22 lines
478 B
Lua
22 lines
478 B
Lua
require("nvim-treesitter.configs").setup({
|
|
highlight = {
|
|
enable = true,
|
|
additional_vim_regex_highlighting = false,
|
|
},
|
|
context_commentstring = {
|
|
enable = true,
|
|
enable_autocmd = false,
|
|
},
|
|
rainbow = {
|
|
enable = true,
|
|
disable = { "html" },
|
|
extended_mode = false,
|
|
max_file_lines = nil,
|
|
},
|
|
autotag = { enable = true },
|
|
incremental_selection = { enable = true },
|
|
indent = { enable = true, disable = { "python", "css" } },
|
|
autopairs = {
|
|
enable = true,
|
|
},
|
|
})
|