about summary refs log tree commit diff
path: root/.config/nvim/lua/plugins/treesitter.lua
blob: 626c32950d0f03e71e9f3a65b7c5173e6698e0dc (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 = {"c", "vimdoc", "markdown", "jsonc", "lua"},
      sync_install = false,
      highlight = { enable = true },
      indent = { enable = true },
    })
  end,
}