16 lines
279 B
Nix
16 lines
279 B
Nix
|
{
|
||
|
programs.nixvim.colorschemes.kanagawa = {
|
||
|
enable = true;
|
||
|
settings = {
|
||
|
commentStyle = {
|
||
|
italic = true;
|
||
|
};
|
||
|
dimInactive = true;
|
||
|
terminalColors = true;
|
||
|
theme = "wave";
|
||
|
transparent = false;
|
||
|
undercurl = true;
|
||
|
};
|
||
|
};
|
||
|
}
|