Run `nix fmt` at the root of the repository to format all files. I've done this on my fork and this will help me merge your changes later without having to deal with un-formatted files.
31 lines
528 B
Nix
31 lines
528 B
Nix
_: {
|
|
plugins.todo-comments = {
|
|
enable = true;
|
|
settings = {
|
|
colors = {
|
|
error = [
|
|
"DiagnosticError"
|
|
"ErrorMsg"
|
|
"#ED8796"
|
|
];
|
|
warning = [
|
|
"DiagnosticWarn"
|
|
"WarningMsg"
|
|
"#EED49F"
|
|
];
|
|
info = [
|
|
"DiagnosticInfo"
|
|
"#EED49F"
|
|
];
|
|
default = [
|
|
"Identifier"
|
|
"#F5A97F"
|
|
];
|
|
test = [
|
|
"Identifier"
|
|
"#8AADF4"
|
|
];
|
|
};
|
|
};
|
|
};
|
|
}
|