nixvim/config/plugins/editor/todo-comments.nix
2024-05-30 21:59:50 +02:00

12 lines
320 B
Nix

_: {
plugins.todo-comments = {
enable = true;
colors = {
error = ["DiagnosticError" "ErrorMsg" "#ED8796"];
warning = ["DiagnosticWarn" "WarningMsg" "#EED49F"];
info = ["DiagnosticInfo" "#EED49F"];
default = ["Identifier" "#F5A97F"];
test = ["Identifier" "#8AADF4"];
};
};
}