This repository has been archived on 2026-01-13. You can view files and clone it, but cannot push or open issues or pull requests.
|
local present, treesitter = pcall(require, "nvim-treesitter.configs")
|
|
|
|
if not present then
|
|
return
|
|
end
|
|
|
|
local options = {
|
|
ensure_installed = {
|
|
"lua",
|
|
"rust",
|
|
},
|
|
highlight = {
|
|
enable = true,
|
|
use_languagetree = true,
|
|
},
|
|
}
|
|
|
|
treesitter.setup(options)
|