mirror of
https://github.com/smg1024/nix-darwin.git
synced 2026-05-22 20:32:59 +09:00
23 lines
328 B
Nix
Executable file
23 lines
328 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;
|
|
};
|
|
}
|