mirror of
http://github.com/JaeUs3792/dotfiles
synced 2025-12-14 16:11:34 +09:00
13 lines
348 B
Lua
13 lines
348 B
Lua
return {
|
|
"nvim-treesitter/nvim-treesitter",
|
|
build = ":TSUpdate",
|
|
config = function()
|
|
local configs = require("nvim-treesitter.configs")
|
|
configs.setup({
|
|
ensure_installed = {"lua", "c", "rust", "verilog"},
|
|
highlight = { enable = true },
|
|
indent = { enable = true }
|
|
})
|
|
end
|
|
}
|