use nextls
This commit is contained in:
parent
ee4a504bb0
commit
087f7ec9ed
1 changed files with 22 additions and 1 deletions
|
@ -53,6 +53,15 @@
|
||||||
hash = "sha256-tK7G5m3X8k2HjUA6Rm6Lz82K2GjXzcc1JNlxWrbBxGU=";
|
hash = "sha256-tK7G5m3X8k2HjUA6Rm6Lz82K2GjXzcc1JNlxWrbBxGU=";
|
||||||
};
|
};
|
||||||
})
|
})
|
||||||
|
(pkgs.vimUtils.buildVimPlugin {
|
||||||
|
name = "elixir-tools";
|
||||||
|
src = pkgs.fetchFromGitHub {
|
||||||
|
owner = "elixir-tools";
|
||||||
|
repo = "elixir-tools.nvim";
|
||||||
|
rev = "v0.14.0";
|
||||||
|
hash = "sha256-U6db1n/RIpT7Dd54e9iI/PjO1BhDpMyNPfaph+dUk7k=";
|
||||||
|
};
|
||||||
|
})
|
||||||
];
|
];
|
||||||
|
|
||||||
colorscheme = "helix-boo";
|
colorscheme = "helix-boo";
|
||||||
|
@ -72,7 +81,7 @@
|
||||||
lsp = {
|
lsp = {
|
||||||
enable = true;
|
enable = true;
|
||||||
servers = {
|
servers = {
|
||||||
elixirls.enable = true;
|
# elixirls.enable = true;
|
||||||
tsserver.enable = true;
|
tsserver.enable = true;
|
||||||
nil_ls.enable = true;
|
nil_ls.enable = true;
|
||||||
};
|
};
|
||||||
|
@ -273,6 +282,18 @@
|
||||||
vim.keymap.set('n', 'gr', vim.lsp.buf.references, opts)
|
vim.keymap.set('n', 'gr', vim.lsp.buf.references, opts)
|
||||||
end,
|
end,
|
||||||
})
|
})
|
||||||
|
|
||||||
|
local elixir = require('elixir')
|
||||||
|
require('elixir').setup({
|
||||||
|
nextls = {
|
||||||
|
enable = true,
|
||||||
|
init_options = {
|
||||||
|
experimental = { completions = { enable = true } },
|
||||||
|
}
|
||||||
|
},
|
||||||
|
credo = { enable = false },
|
||||||
|
elixirls = { enable = false },
|
||||||
|
})
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue