dotfiles/nvim/custom/override.lua

29 lines
310 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",
},
}
2022-08-02 18:37:31 +02:00
M.mason = {
ensure_installed = {
"gopls",
"pyright",
"rust-analyzer",
}
}
2022-07-01 11:32:35 +02:00
return M