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

36 lines
522 B
Lua

return {
recommended = {
ft = { "elm" },
root = { "elm.json" },
},
{
"nvim-treesitter/nvim-treesitter",
opts = { ensure_installed = { "elm" } },
},
{
"williamboman/mason.nvim",
opts = { ensure_installed = { "elm-format" } },
},
{
"stevearc/conform.nvim",
optional = true,
opts = {
formatters_by_ft = {
elm = { "elm_format" },
},
},
},
{
"neovim/nvim-lspconfig",
opts = {
servers = {
elmls = {},
},
},
},
}