mirror of
https://github.com/LazyVim/LazyVim.git
synced 2025-06-22 08:53:33 +02:00
Added [Gleam lang](https://gleam.run/) support. --------- Co-authored-by: Folke Lemaitre <folke.lemaitre@gmail.com>
24 lines
393 B
Lua
24 lines
393 B
Lua
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 = {},
|
|
},
|
|
},
|
|
},
|
|
}
|