LazyVim.LazyVim/lua/lazyvim/plugins/extras/lang/gleam.lua

25 lines
393 B
Lua
Raw Normal View History

return {
recommended = {
ft = "gleam",
root = "gleam.toml",
},
{
"nvim-treesitter/nvim-treesitter",
opts = function(_, opts)
if type(opts.ensure_installed) == "table" then
vim.list_extend(opts.ensure_installed, { "gleam" })
end
end,
},
{
"neovim/nvim-lspconfig",
opts = {
servers = {
gleam = {},
},
},
},
}