mirror of
https://github.com/nix-community/nixvim.git
synced 2025-07-23 20:25:08 +02:00
plugins/rose-pine: add colorscheme + test (#435)
* plugins/rose-pine: add colorscheme & test * Fixed typo in test * Fix invalid option in test * Use inherit instead of cfg.groups in plugins/rose-pine.nix * plugins/rosepine: improved formatting
This commit is contained in:
parent
f5825552e4
commit
136f059405
3 changed files with 106 additions and 0 deletions
51
tests/test-sources/plugins/colorschemes/rose-pine.nix
Normal file
51
tests/test-sources/plugins/colorschemes/rose-pine.nix
Normal file
|
@ -0,0 +1,51 @@
|
|||
{
|
||||
empty = {
|
||||
colorschemes.rose-pine.enable = true;
|
||||
};
|
||||
|
||||
defaults = {
|
||||
colorschemes.rose-pine = {
|
||||
enable = true;
|
||||
style = "main";
|
||||
boldVerticalSplit = false;
|
||||
dimInactive = false;
|
||||
disableItalics = false;
|
||||
groups = {
|
||||
background = "base";
|
||||
background_nc = "_experimental_nc";
|
||||
panel = "surface";
|
||||
panel_nc = "base";
|
||||
border = "highlight_med";
|
||||
comment = "muted";
|
||||
link = "iris";
|
||||
punctuation = "subtle";
|
||||
error = "love";
|
||||
hint = "iris";
|
||||
info = "foam";
|
||||
warn = "gold";
|
||||
headings = {
|
||||
h1 = "iris";
|
||||
h2 = "foam";
|
||||
h3 = "rose";
|
||||
h4 = "gold";
|
||||
h5 = "pine";
|
||||
h6 = "foam";
|
||||
};
|
||||
};
|
||||
highlightGroups = {
|
||||
ColorColumn = {bg = "rose";};
|
||||
CursorLine = {
|
||||
bg = "foam";
|
||||
blend = 10;
|
||||
};
|
||||
StatusLine = {
|
||||
fg = "love";
|
||||
bg = "love";
|
||||
blend = 10;
|
||||
};
|
||||
};
|
||||
transparentBackground = false;
|
||||
transparentFloat = false;
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue