1
0
Fork 0
mirror of https://github.com/nix-community/nixvim.git synced 2025-11-24 03:09:39 +01:00

colorschemes/monokai-pro: migrate to by-name

This commit is contained in:
Heitor Augusto 2025-11-02 19:46:45 -03:00
parent 0844790396
commit a098c523ed
No known key found for this signature in database
GPG key ID: 3EEC05B0024AF8A4
3 changed files with 0 additions and 1 deletions

View file

@ -1,65 +0,0 @@
{
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";
};
};
};
}