Files
LazyVim-mirror/lua/lazyvim/plugins/extras/lang/gleam.lua
Vu Nhat Chuong 02b8dd3f4b feat(gleam): add conform (#5640)
## Description

Add conform.nvim formatter for gleam lanuage.

## Checklist

- [x] I've read the
[CONTRIBUTING](https://github.com/LazyVim/LazyVim/blob/main/CONTRIBUTING.md)
guidelines.
2025-10-14 13:17:22 +02:00

30 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" },
},
},
},
}