dotfiles/nvim/custom/override.lua

21 lines
219 B
Lua
Raw Normal View History

2022-07-01 11:32:35 +02:00
local M = {}
M.treesitter = {
ensure_installed = {
"vim",
"html",
"css",
"javascript",
"json",
"toml",
"markdown",
"c",
"bash",
"lua",
"python",
"go",
},
}
return M