nixvim/config/plugins/editor/todo-comments.nix
Roel de Cort 502d31e03c
feat: small improvements (#25)
- Renamed and moved settings in some plugins due to upstream changes
- Added comments to neovim settings
- Added cmdheight = 0 and mouse = "a" settings to config
2024-08-26 23:37:02 +02:00

14 lines
358 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"];
};
};
};
}