mirror of
https://github.com/nix-community/nixvim.git
synced 2025-07-24 04:35:08 +02:00
colorscheme/kanagawa: init + test
This commit is contained in:
parent
4ba81a377a
commit
9324c825b9
3 changed files with 255 additions and 0 deletions
55
tests/test-sources/plugins/colorschemes/kanagawa.nix
Normal file
55
tests/test-sources/plugins/colorschemes/kanagawa.nix
Normal file
|
@ -0,0 +1,55 @@
|
|||
{
|
||||
empty = {
|
||||
colorschemes.kanagawa.enable = true;
|
||||
};
|
||||
|
||||
default = {
|
||||
colorschemes.kanagawa = {
|
||||
enable = true;
|
||||
|
||||
compile = false;
|
||||
undercurl = true;
|
||||
commentStyle = {italic = true;};
|
||||
functionStyle = {};
|
||||
keywordStyle = {italic = true;};
|
||||
statementStyle = {bold = true;};
|
||||
typeStyle = {};
|
||||
transparent = false;
|
||||
dimInactive = false;
|
||||
terminalColors = true;
|
||||
colors = {
|
||||
theme = {
|
||||
wave = {
|
||||
ui = {
|
||||
float = {
|
||||
bg = "none";
|
||||
};
|
||||
};
|
||||
};
|
||||
dragon = {
|
||||
syn = {
|
||||
parameter = "yellow";
|
||||
};
|
||||
};
|
||||
all = {
|
||||
ui = {
|
||||
bg_gutter = "none";
|
||||
};
|
||||
};
|
||||
};
|
||||
palette = {
|
||||
sumiInk0 = "#000000";
|
||||
fujiWhite = "#FFFFFF";
|
||||
};
|
||||
};
|
||||
overrides = ''
|
||||
return {}
|
||||
'';
|
||||
theme = "wave";
|
||||
background = {
|
||||
light = "lotus";
|
||||
dark = "wave";
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue