mirror of
https://github.com/nix-community/nixvim.git
synced 2025-07-23 04:05:06 +02:00
colorschemes/cyberdream: init
This commit is contained in:
parent
afa64f35ee
commit
82a19581de
3 changed files with 156 additions and 0 deletions
67
tests/test-sources/plugins/colorschemes/cyberdream.nix
Normal file
67
tests/test-sources/plugins/colorschemes/cyberdream.nix
Normal file
|
@ -0,0 +1,67 @@
|
|||
{
|
||||
empty = {
|
||||
colorschemes.cyberdream.enable = true;
|
||||
};
|
||||
|
||||
defaults = {
|
||||
colorschemes.cyberdream = {
|
||||
enable = true;
|
||||
|
||||
settings = {
|
||||
transparent = false;
|
||||
italic_comments = false;
|
||||
hide_fillchars = false;
|
||||
|
||||
borderless_telescope = true;
|
||||
terminal_colors = true;
|
||||
|
||||
theme = {
|
||||
highlights = {};
|
||||
colors = {};
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
example = {
|
||||
colorschemes.cyberdream = {
|
||||
enable = true;
|
||||
|
||||
settings = {
|
||||
transparent = false;
|
||||
italic_comments = false;
|
||||
hide_fillchars = false;
|
||||
|
||||
borderless_telescope = true;
|
||||
terminal_colors = true;
|
||||
|
||||
theme = {
|
||||
highlights = {
|
||||
Comment = {
|
||||
fg = "#696969";
|
||||
bg = "NONE";
|
||||
italic = true;
|
||||
};
|
||||
SpellBad = {
|
||||
fg = "red";
|
||||
style = "undercurl,underdashed,italic";
|
||||
};
|
||||
ErrorMsg = {
|
||||
fg = "#000000";
|
||||
bg = "#000000";
|
||||
style = {
|
||||
undercurl = true;
|
||||
italic = true;
|
||||
};
|
||||
};
|
||||
};
|
||||
colors = {
|
||||
bg = "#000000";
|
||||
green = "#00ff00";
|
||||
magenta = "#ff00ff";
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue