dotfiles/nvim/custom/override.lua

29 lines
310 B
Lua

local M = {}
M.treesitter = {
ensure_installed = {
"vim",
"html",
"css",
"javascript",
"json",
"toml",
"markdown",
"c",
"bash",
"lua",
"python",
"go",
},
}
M.mason = {
ensure_installed = {
"gopls",
"pyright",
"rust-analyzer",
}
}
return M