aboutsummaryrefslogtreecommitdiffstats
path: root/lua
diff options
context:
space:
mode:
Diffstat (limited to 'lua')
-rw-r--r--lua/lspconfig/server_configurations/gleam.lua25
1 files changed, 25 insertions, 0 deletions
diff --git a/lua/lspconfig/server_configurations/gleam.lua b/lua/lspconfig/server_configurations/gleam.lua
new file mode 100644
index 00000000..ec5504ce
--- /dev/null
+++ b/lua/lspconfig/server_configurations/gleam.lua
@@ -0,0 +1,25 @@
+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")]],
+ },
+ },
+}