mirror of
https://git.sr.ht/~coasteen/dotfiles
synced 2025-11-04 14:47:38 +01:00
11 lines
234 B
Lua
11 lines
234 B
Lua
|
|
local ts = require("nvim-treesitter.configs")
|
||
|
|
|
||
|
|
ts.setup({
|
||
|
|
ensure_installed = { "c", "cpp", "lua", "go", "gomod", "gowork", "gosum", "rust", "python" },
|
||
|
|
auto_install = true,
|
||
|
|
sync_install = true,
|
||
|
|
highlight = {
|
||
|
|
enable = true
|
||
|
|
}
|
||
|
|
})
|