1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-01-24 09:30:04 +08:00
SpaceVim/bundle/nvim-lspconfig-latest/lua/lspconfig/server_configurations/gleam.lua

26 lines
557 B
Lua
Vendored

local util = require 'lspconfig.util'
return {
default_config = {
cmd = { 'gleam', 'lsp' },
filetypes = { 'gleam' },
root_dir = function(fname)
return util.root_pattern('gleam.toml', '.git')(fname)
end,
},
docs = {
description = [[
https://github.com/gleam-lang/gleam
A language server for Gleam Programming Language.
[Installation](https://gleam.run/getting-started/installing/)
It can be i
]],
default_config = {
cmd = { 'gleam', 'lsp' },
root_dir = [[root_pattern("gleam.toml", ".git")]],
},
},
}