local ts_config = require("nvim-treesitter.configs")

ts_config.setup {
    ensure_installed = {
        "javascript",
        "html",
        "css",
        "bash",
        "lua",
        "json",
        "python"
        --  "cpp",
        --   "rust",
    },
    highlight = {
        enable = true,
        use_languagetree = true
    }
}