]> Arthur Taft Gitweb - nvim.git/blob - lua/plugins/treesitter.lua
Change tab indent to 4 spaces
[nvim.git] / lua / plugins / treesitter.lua
1 return {
2   {
3     "nvim-treesitter/nvim-treesitter",
4     build = ":TSUpdate",
5     opts = {
6       ensure_installed = {
7         "bash","python","lua","json","yaml","markdown","markdown_inline",
8         "dockerfile","regex","vim","vimdoc","latex"
9       },
10       highlight = { enable = true },
11       indent = { enable = true },
12     },
13     config = function(_, opts) require("nvim-treesitter.configs").setup(opts) end,
14   },
15 }