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

9 lines
237 B
Lua
Raw Normal View History

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