my-nvim-config/laptop/plugin/treesitter.lua

10 lines
316 B
Lua
Raw Normal View History

2024-03-26 01:33:00 -05:00
local configs = require("nvim-treesitter.configs")
configs.setup({
ensure_installed = { "rust", "lua", "vim", "vimdoc", "latex", "ocaml",
"yaml", "dockerfile", "make", "bash", "html", "javascript", "css" },
2024-03-26 01:33:00 -05:00
sync_install = false,
highlight = { enable = true },
indent = { enable = true },
})