treesitter.lua 348 B

1234567891011121314
  1. return {
  2. "nvim-treesitter/nvim-treesitter",
  3. build = ":TSUpdate",
  4. config = function()
  5. local configs = require("nvim-treesitter.configs")
  6. configs.setup({
  7. ensure_installed = { "c", "lua", "vim", "vimdoc", "javascript", "html", "rust" },
  8. sync_install = false,
  9. highlight = { enable = true },
  10. indent = { enable = true },
  11. })
  12. end,
  13. }