add elixir
This commit is contained in:
parent
236a1bf0cd
commit
464598e57f
1 changed files with 6 additions and 2 deletions
|
@ -55,7 +55,7 @@ with lib; {
|
|||
|
||||
-- Setup all LSPs
|
||||
local nvim_lsp = require'lspconfig'
|
||||
local servers = {'rust_analyzer', 'rnix', 'clangd', 'pyright', 'dhall_lsp_server'}
|
||||
local servers = {'rust_analyzer', 'rnix', 'clangd', 'pyright', 'dhall_lsp_server', 'elixirls'}
|
||||
for _, s in ipairs(servers) do
|
||||
nvim_lsp[s].setup({
|
||||
on_attach = on_attach,
|
||||
|
@ -98,6 +98,7 @@ with lib; {
|
|||
lsp_extensions-nvim
|
||||
lsp-status-nvim
|
||||
dhall-vim
|
||||
vim-elixir
|
||||
];
|
||||
|
||||
output.path.path = with pkgs; [
|
||||
|
@ -120,5 +121,8 @@ with lib; {
|
|||
|
||||
${pyright}/bin/pyright-langserver $@
|
||||
'')
|
||||
|
||||
# Elixir
|
||||
elixir_ls
|
||||
];
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue