mirror of
https://github.com/nix-community/nixvim.git
synced 2025-07-30 23:55:15 +02:00
plugins/poimandres: add colorscheme + test
This commit is contained in:
parent
121566a267
commit
8ba084783e
3 changed files with 118 additions and 0 deletions
54
tests/test-sources/plugins/colorschemes/poimandres.nix
Normal file
54
tests/test-sources/plugins/colorschemes/poimandres.nix
Normal file
|
@ -0,0 +1,54 @@
|
|||
{
|
||||
# Empty configuration
|
||||
empty = {
|
||||
colorschemes.poimandres.enable = true;
|
||||
};
|
||||
|
||||
# All the upstream default options of poimandres
|
||||
defaults = {
|
||||
colorschemes.poimandres = {
|
||||
enable = true;
|
||||
|
||||
boldVertSplit = false;
|
||||
darkVariant = "main";
|
||||
disableBackground = false;
|
||||
disableFloatBackground = false;
|
||||
disableItalics = false;
|
||||
dimNcBackground = false;
|
||||
|
||||
groups = {
|
||||
background = "background2";
|
||||
panel = "background3";
|
||||
border = "background3";
|
||||
comment = "blueGray3";
|
||||
link = "blue3";
|
||||
punctuation = "blue3";
|
||||
|
||||
error = "pink3";
|
||||
hint = "blue1";
|
||||
info = "blue3";
|
||||
warn = "yellow";
|
||||
|
||||
git_add = "teal1";
|
||||
git_change = "blue2";
|
||||
git_delete = "pink3";
|
||||
git_dirty = "blue4";
|
||||
git_ignore = "blueGray1";
|
||||
git_merge = "blue2";
|
||||
git_rename = "teal3";
|
||||
git_stage = "blue1";
|
||||
git_text = "teal2";
|
||||
|
||||
headings = {
|
||||
h1 = "teal2";
|
||||
h2 = "yellow";
|
||||
h3 = "pink3";
|
||||
h4 = "pink2";
|
||||
h5 = "blue1";
|
||||
h6 = "blue2";
|
||||
};
|
||||
};
|
||||
highlightGroups = {};
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue