colorschemes/monokai-pro: init

This commit is contained in:
Gaetan Lepage 2025-01-05 23:09:42 +01:00 committed by nix-infra-bot
parent 8968da1617
commit 1e564fae7d
3 changed files with 195 additions and 0 deletions

View file

@ -0,0 +1,65 @@
{
empty = {
colorschemes.monokai-pro.enable = true;
};
defaults = {
plugins.web-devicons.enable = true;
colorschemes.monokai-pro = {
enable = true;
settings = {
transparent_background = false;
terminal_colors = true;
devicons = false;
styles = {
comment.italic = true;
keyword.italic = true;
type.italic = true;
storageclass.italic = true;
structure.italic = true;
parameter.italic = true;
annotation.italic = true;
tag_attribute.italic = true;
};
filter.__raw = "vim.o.background == 'light' and 'classic' or 'pro'";
day_night = {
enable = false;
day_filter = "pro";
night_filter = "spectrum";
};
inc_search = "background";
background_clear = [
"toggleterm"
"telescope"
"renamer"
"notify"
];
plugins = {
bufferline = {
underline_selected = false;
underline_visible = false;
underline_fill = false;
bold = true;
};
indent_blankline = {
context_highlight = "default";
context_start_underline = false;
};
};
};
};
};
example = {
colorschemes.monokai-pro = {
enable = true;
settings = {
terminal_colors = false;
devicons = false;
filter = "ristretto";
};
};
};
}