summaryrefslogtreecommitdiff
path: root/lua/plugins/treesitter.lua
blob: d42aca599a46b29a619515b20fdeb0a44cbcf7c9 (plain)
1
2
3
4
5
6
7
8
9
10
11
return {
  "nvim-treesitter/nvim-treesitter",
  config = function()
    require"nvim-treesitter.configs".setup({
      ensure_installed = { "cpp", "ocaml", "python" },
      highlight = {
        enable = true,
      }
    })
  end
}