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

21 lines
279 B
Lua

return {
recommended = {
ft = "gleam",
root = "gleam.toml",
},
{
"nvim-treesitter/nvim-treesitter",
opts = { ensure_installed = { "gleam" } },
},
{
"neovim/nvim-lspconfig",
opts = {
servers = {
gleam = {},
},
},
},
}