mirror of
https://github.com/nix-community/nixvim.git
synced 2025-11-24 19:29:41 +01:00
colorschemes/palette: migrate to by-name
This commit is contained in:
parent
52ff6cf06a
commit
88c1a4dbfa
3 changed files with 0 additions and 1 deletions
|
|
@ -1,59 +0,0 @@
|
|||
{
|
||||
empty = {
|
||||
colorschemes.palette.enable = true;
|
||||
};
|
||||
|
||||
defaults = {
|
||||
colorschemes.palette = {
|
||||
enable = true;
|
||||
|
||||
settings = {
|
||||
palettes = {
|
||||
main = "dark";
|
||||
accent = "pastel";
|
||||
state = "pastel";
|
||||
};
|
||||
custom_palettes = {
|
||||
main.__empty = { };
|
||||
accent.__empty = { };
|
||||
state.__empty = { };
|
||||
};
|
||||
italics = true;
|
||||
transparent_background = false;
|
||||
caching = true;
|
||||
cache_dir.__raw = "vim.fn.stdpath('cache') .. '/palette'";
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
example-custom-palette = {
|
||||
colorschemes.palette = {
|
||||
enable = true;
|
||||
|
||||
settings = {
|
||||
palettes = {
|
||||
main = "dust_dusk";
|
||||
};
|
||||
|
||||
custom_palettes = {
|
||||
main = {
|
||||
dust_dusk = {
|
||||
color0 = "#121527";
|
||||
color1 = "#1A1E39";
|
||||
color2 = "#232A4D";
|
||||
color3 = "#3E4D89";
|
||||
color4 = "#687BBA";
|
||||
color5 = "#A4B1D6";
|
||||
color6 = "#bdbfc9";
|
||||
color7 = "#DFE5F1";
|
||||
color8 = "#e9e9ed";
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
italics = true;
|
||||
transparent_background = false;
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue