mirror of
https://github.com/pojokcodeid/nvim-lazy.git
synced 2025-06-22 00:49:01 +02:00
9 lines
179 B
Lua
9 lines
179 B
Lua
|
return {
|
||
|
"nvim-treesitter/nvim-treesitter",
|
||
|
config = function()
|
||
|
require("nvim-treesitter.configs").setup({
|
||
|
ensure_installed = { "html", "css", "javascript" },
|
||
|
})
|
||
|
end,
|
||
|
}
|