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.
nvim/lua/plugins/configs/treesitter.lua

21 lines
345 B
Lua

local present, treesitter = pcall(require, "nvim-treesitter.configs")
if not present then
return
end
require("colors").load_highlight "treesitter"
local options = {
ensure_installed = {
"lua",
"rust",
},
highlight = {
enable = true,
use_languagetree = true,
},
}
treesitter.setup(options)