nixos-combined-flake/modules/nixvim/plugins/lsp/languages/html.nix

16 lines
260 B
Nix

{
plugins.lsp = {
servers = {
html = {
enable = true;
extraOptions.settings.html = {
format = {
wrapLineLength = 79;
wrapAttributes = "force-aligned";
};
};
};
};
};
}