LazyVim.LazyVim/lua/lazyvim/plugins/extras/lang/gleam.lua
2025-02-18 09:41:54 +07:00

29 lines
414 B
Lua

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