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