dotfiles/nvim/custom/override.lua
2022-07-01 11:32:35 +02:00

21 lines
219 B
Lua

local M = {}
M.treesitter = {
ensure_installed = {
"vim",
"html",
"css",
"javascript",
"json",
"toml",
"markdown",
"c",
"bash",
"lua",
"python",
"go",
},
}
return M