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