mirror of
https://github.com/nix-community/nixvim.git
synced 2025-07-10 09:14:31 +02:00
colorschemes/palette: init
This commit is contained in:
parent
7d0b2c2ed0
commit
965f4b0b20
3 changed files with 206 additions and 0 deletions
55
tests/test-sources/plugins/colorschemes/palette.nix
Normal file
55
tests/test-sources/plugins/colorschemes/palette.nix
Normal file
|
@ -0,0 +1,55 @@
|
|||
{
|
||||
empty = {
|
||||
colorschemes.palette.enable = true;
|
||||
};
|
||||
|
||||
defaults = {
|
||||
colorschemes.palette = {
|
||||
enable = true;
|
||||
|
||||
palettes = {
|
||||
main = "dark";
|
||||
accent = "pastel";
|
||||
state = "pastel";
|
||||
};
|
||||
customPalettes = {
|
||||
main = {};
|
||||
accent = {};
|
||||
state = {};
|
||||
};
|
||||
italics = true;
|
||||
transparentBackground = false;
|
||||
caching = true;
|
||||
cacheDir.__raw = "vim.fn.stdpath('cache') .. '/palette'";
|
||||
};
|
||||
};
|
||||
|
||||
example-custom-palette = {
|
||||
colorschemes.palette = {
|
||||
enable = true;
|
||||
|
||||
palettes = {
|
||||
main = "dust_dusk";
|
||||
};
|
||||
|
||||
customPalettes = {
|
||||
main = {
|
||||
dust_dusk = {
|
||||
color0 = "#121527";
|
||||
color1 = "#1A1E39";
|
||||
color2 = "#232A4D";
|
||||
color3 = "#3E4D89";
|
||||
color4 = "#687BBA";
|
||||
color5 = "#A4B1D6";
|
||||
color6 = "#bdbfc9";
|
||||
color7 = "#DFE5F1";
|
||||
color8 = "#e9e9ed";
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
italics = true;
|
||||
transparentBackground = false;
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue