Linux configuration stuffs
1return {
2 "nvim-treesitter/nvim-treesitter",
3 event = "VeryLazy",
4 config = function()
5 require("nvim-treesitter.configs").setup({
6 sync_install = false,
7 auto_install = true,
8 ensure_installed = {
9 "c",
10 "cpp",
11 "lua",
12 "javascript",
13 "typescript",
14 "html",
15 "css",
16 "svelte",
17 },
18 highlight = true,
19 })
20 end,
21}