2023-01-21 22:11:43 +01:00
|
|
|
local ts_conf = require('nvim-treesitter.configs')
|
|
|
|
|
|
|
|
ts_conf.setup {
|
2023-07-24 00:01:29 +02:00
|
|
|
ensure_installed = { "vim", "vimdoc", "rust", "nix", "latex" },
|
2023-01-21 22:11:43 +01:00
|
|
|
highlight = {
|
|
|
|
enable = true,
|
|
|
|
},
|
|
|
|
indent = {
|
|
|
|
enable = true,
|
|
|
|
},
|
|
|
|
incremental_selection = {
|
|
|
|
enable = true,
|
|
|
|
},
|
|
|
|
textobjects = {
|
|
|
|
enable = true,
|
|
|
|
},
|
|
|
|
}
|