1
0
Fork 0
mirror of https://github.com/nix-community/nixvim.git synced 2025-12-25 02:10:58 +01:00

colorschemes/github-theme: migrate to by-name

This commit is contained in:
Heitor Augusto 2025-11-02 19:46:40 -03:00 committed by Gaétan Lepage
parent ca0647f56c
commit 59760ce0c0
3 changed files with 0 additions and 1 deletions

View file

@ -0,0 +1,70 @@
{
empty = {
colorscheme = "github_dark";
colorschemes.github-theme.enable = true;
};
defaults = {
colorscheme = "github_dark";
colorschemes.github-theme = {
enable = true;
settings = {
options = {
compile_path.__raw = "vim.fn.stdpath('cache') .. '/github-theme'";
compile_file_suffix = "_compiled";
hide_end_of_buffer = true;
hide_nc_statusline = true;
transparent = false;
terminal_colors = true;
dim_inactive = false;
module_default = true;
styles = {
comments = "NONE";
functions = "NONE";
keywords = "NONE";
variables = "NONE";
conditionals = "NONE";
constants = "NONE";
numbers = "NONE";
operators = "NONE";
strings = "NONE";
types = "NONE";
};
inverse = {
match_paren = false;
visual = false;
search = false;
};
darken = {
floats = true;
sidebars = {
enable = true;
list.__empty = { };
};
};
modules.__empty = { };
};
palettes.__empty = { };
specs.__empty = { };
groups.__empty = { };
};
};
};
example = {
colorscheme = "github_light";
colorschemes.github-theme = {
enable = true;
settings = {
transparent = true;
dim_inactive = true;
styles = {
comments = "italic";
keywords = "bold";
};
};
};
};
}