23 lines
436 B
Nix
23 lines
436 B
Nix
{
|
|
programs.nixvim.plugins = {
|
|
lsp.servers.efm = {
|
|
enable = true;
|
|
extraOptions.init_options = {
|
|
documentFormatting = true;
|
|
documentRangeFormatting = true;
|
|
hover = true;
|
|
documentSymbol = true;
|
|
codeAction = true;
|
|
completion = true;
|
|
};
|
|
};
|
|
|
|
lsp-format = {
|
|
enable = true;
|
|
lspServersToEnable = ["efm"];
|
|
};
|
|
|
|
efmls-configs.enable = true;
|
|
};
|
|
}
|