2025-02-26 10:22:27 +00:00
|
|
|
require("nvim-treesitter.configs").setup({
|
2024-03-15 14:15:26 +00:00
|
|
|
ensure_installed = { "typescript" },
|
|
|
|
sync_install = true,
|
|
|
|
auto_install = true,
|
|
|
|
highlight = {
|
|
|
|
enable = true,
|
|
|
|
-- Setting this to true will run `:h syntax` and tree-sitter at the same time.
|
|
|
|
-- Set this to `true` if you depend on 'syntax' being enabled (like for indentation).
|
|
|
|
-- Using this option may slow down your editor, and you may see some duplicate highlights.
|
|
|
|
-- Instead of true it can also be a list of languages
|
|
|
|
additional_vim_regex_highlighting = false,
|
|
|
|
},
|
|
|
|
indent = {
|
2025-02-26 10:22:27 +00:00
|
|
|
enable = true,
|
2024-03-15 14:15:26 +00:00
|
|
|
},
|
2025-02-26 10:22:27 +00:00
|
|
|
})
|