25 lines
648 B
Lua
25 lines
648 B
Lua
-- vim.lsp.config("expert", {
|
|
-- cmd = { "expert" },
|
|
-- root_markers = { "mix.exs", ".git" },
|
|
-- filetypes = { "elixir", "eelixir", "heex" },
|
|
-- })
|
|
|
|
-- vim.lsp.enable("expert")
|
|
vim.lsp.config["elixir-ls"] = {
|
|
cmd = { "elixir-ls" },
|
|
filetypes = { "elixir", "eelixir", "heex" },
|
|
root_markers = { "mix.exs", ".git" },
|
|
-- Specific settings to send to the server. The schema is server-defined.
|
|
-- Example: https://raw.githubusercontent.com/LuaLS/vscode-lua/master/setting/schema.json
|
|
-- settings = {
|
|
-- Lua = {
|
|
-- runtime = {
|
|
-- version = 'LuaJIT',
|
|
-- }
|
|
-- }
|
|
-- }
|
|
}
|
|
|
|
vim.lsp.enable("elixir-ls")
|
|
return {}
|