plugins/tiny-devicons-auto-colors: init

This commit is contained in:
Austin Horstman 2024-12-15 12:33:05 -06:00
parent d0040391e8
commit e16d244865
No known key found for this signature in database
2 changed files with 172 additions and 0 deletions

View file

@ -0,0 +1,63 @@
{
empty = {
plugins = {
web-devicons.enable = true;
tiny-devicons-auto-colors.enable = true;
};
};
defaults = {
plugins = {
web-devicons.enable = true;
tiny-devicons-auto-colors = {
enable = true;
settings = {
colors = null;
factors = {
lightness = 1.75;
chroma = 1;
hue = 1.25;
};
cache = {
enabled = true;
path.__raw = ''vim.fn.stdpath("cache") .. "/tiny-devicons-auto-colors-cache.json"'';
};
precise_search = {
enabled = true;
iteration = 10;
precision = 20;
threshold = 23;
};
ignore = [ ];
autoreload = false;
};
};
};
};
catppuccin = {
colorschemes.catppuccin.enable = true;
plugins = {
web-devicons.enable = true;
tiny-devicons-auto-colors = {
enable = true;
settings = {
colors.__raw = ''require("catppuccin.palettes").get_palette("macchiato")'';
};
};
};
};
mini = {
plugins = {
mini = {
enable = true;
mockDevIcons = true;
modules.icons = { };
};
tiny-devicons-auto-colors.enable = true;
};
};
}