1
0
Fork 0
mirror of https://github.com/nix-community/nixvim.git synced 2025-11-08 19:46:06 +01:00

colorschemes/solarized-osaka: init

This commit is contained in:
Gaetan Lepage 2025-06-14 15:46:52 +02:00 committed by Gaétan Lepage
parent ab0a3682cc
commit be49587a24
3 changed files with 73 additions and 0 deletions

View file

@ -0,0 +1,50 @@
{ lib, ... }:
{
empty = {
colorschemes.solarized-osaka.enable = true;
};
defaults = {
colorschemes.solarized-osaka = {
enable = true;
settings = {
transparent = true;
terminal_colors = true;
styles = {
comments.italic = true;
keywords.italic = true;
functions = { };
variables = { };
sidebars = "dark";
floats = "dark";
};
sidebars = [
"qf"
"help"
];
day_brightness = 0.3;
hide_inactive_statusline = false;
dim_inactive = false;
lualine_bold = false;
on_colors = lib.nixvim.mkRaw "function(colors) end";
on_highlights = lib.nixvim.mkRaw "function(highlights, colors) end";
};
};
};
example = {
colorschemes.solarized-osaka = {
enable = true;
settings = {
transparent = false;
styles = {
comments.italic = true;
keywords.italic = false;
floats = "transparent";
};
};
};
};
}