diff options
| author | Andy LeClair <andyleclair@gmail.com> | 2025-08-28 22:57:24 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-08-28 19:57:24 -0700 |
| commit | 6c9dd771e025da6013ce96f50b93dc7a57ffaf3c (patch) | |
| tree | 07d06cd41b1bcbafcca829d97cd1e8644551c6b6 /lsp | |
| parent | docs: update configs.md (diff) | |
| download | nvim-lspconfig-6c9dd771e025da6013ce96f50b93dc7a57ffaf3c.tar nvim-lspconfig-6c9dd771e025da6013ce96f50b93dc7a57ffaf3c.tar.gz nvim-lspconfig-6c9dd771e025da6013ce96f50b93dc7a57ffaf3c.tar.bz2 nvim-lspconfig-6c9dd771e025da6013ce96f50b93dc7a57ffaf3c.tar.lz nvim-lspconfig-6c9dd771e025da6013ce96f50b93dc7a57ffaf3c.tar.xz nvim-lspconfig-6c9dd771e025da6013ce96f50b93dc7a57ffaf3c.tar.zst nvim-lspconfig-6c9dd771e025da6013ce96f50b93dc7a57ffaf3c.zip | |
feat(expert): elixir expert ls #4041
Diffstat (limited to 'lsp')
| -rw-r--r-- | lsp/expert.lua | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/lsp/expert.lua b/lsp/expert.lua new file mode 100644 index 00000000..a044f071 --- /dev/null +++ b/lsp/expert.lua @@ -0,0 +1,12 @@ +---@brief +--- +--- https://github.com/elixir-lang/expert +--- +--- Expert is the official language server implementation for the Elixir programming language. + +---@type vim.lsp.Config +return { + filetypes = { 'elixir', 'eelixir', 'heex', 'surface' }, + root_markers = { 'mix.exs', '.git' }, + cmd = { 'expert' }, +} |
