feat(nvim): add treesitter

This commit is contained in:
Mohammad Rafiq 2025-02-21 06:30:08 +08:00
parent fe075a8a5f
commit 96453a5503

View file

@ -44,4 +44,16 @@ return { -- Lua table
},
},
},
-- nvim-treesitter
{
"nvim-treesitter/nvim-treesitter",
build = ":TSUpdate",
version = "*",
lazu = false,
config = function()
require("nvim-treesitter.configs").setup({
})
end,
},
}