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.
|
-- require("ui").load_highlight "treesitter"
|
|
|
|
local options = {
|
|
ensure_installed = {
|
|
"lua",
|
|
"rust",
|
|
"c",
|
|
"python",
|
|
"help",
|
|
},
|
|
|
|
highlight = {
|
|
enable = true,
|
|
use_languagetree = true,
|
|
},
|
|
|
|
indent = { enable = true },
|
|
}
|
|
|
|
require("nvim-treesitter.configs").setup(options)
|