1
0
Fork 0
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:
Heitor Augusto 2025-11-02 19:46:49 -03:00
parent 52ff6cf06a
commit 88c1a4dbfa
No known key found for this signature in database
GPG key ID: 3EEC05B0024AF8A4
3 changed files with 0 additions and 1 deletions

View file

@ -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;
};
};
};
}