30 lines
499 B
Lua
Executable File
30 lines
499 B
Lua
Executable File
return {
|
|
-- syntax highlighting
|
|
"nvim-treesitter/nvim-treesitter",
|
|
build = ":TSUpdate",
|
|
config = function()
|
|
require("nvim-treesitter.configs").setup({
|
|
ensure_installed = {
|
|
"bash",
|
|
"c",
|
|
"cpp",
|
|
"hyprlang",
|
|
"java",
|
|
"javascript",
|
|
"json",
|
|
"lua",
|
|
"python",
|
|
"rust",
|
|
"typescript",
|
|
"verilog"
|
|
},
|
|
sync_install = false,
|
|
|
|
highlight = {
|
|
enable = true,
|
|
disable = { "tex" }
|
|
},
|
|
})
|
|
end,
|
|
}
|