17 lines
341 B
Lua
17 lines
341 B
Lua
local ts_conf = require('nvim-treesitter.configs')
|
|
|
|
ts_conf.setup {
|
|
ensure_installed = { "vim", "vimdoc", "rust", "nix", "latex" },
|
|
highlight = {
|
|
enable = true,
|
|
},
|
|
indent = {
|
|
enable = true,
|
|
},
|
|
incremental_selection = {
|
|
enable = true,
|
|
},
|
|
textobjects = {
|
|
enable = true,
|
|
},
|
|
}
|