mirror of
https://github.com/smg1024/nix-darwin.git
synced 2026-05-23 04:43:00 +09:00
23 lines
324 B
Nix
Executable file
23 lines
324 B
Nix
Executable file
{
|
|
# html
|
|
enable = true;
|
|
extraDiagnostics = {
|
|
enable = true;
|
|
types = ["htmlhint"];
|
|
};
|
|
format = {
|
|
enable = true;
|
|
type = [
|
|
"superhtml"
|
|
"prettierd"
|
|
];
|
|
};
|
|
lsp = {
|
|
enable = true;
|
|
servers = ["superhtml"];
|
|
};
|
|
treesitter = {
|
|
enable = true;
|
|
autotagHtml = true;
|
|
};
|
|
}
|