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

20 lines
326 B
Lua

-- require("ui").load_highlight "treesitter"
local options = {
ensure_installed = {
"lua",
"rust",
"c",
"python",
},
highlight = {
enable = true,
use_languagetree = true,
},
indent = { enable = true },
}
require("nvim-treesitter.configs").setup(options)