mirror of
https://github.com/nix-community/nixvim.git
synced 2025-07-02 21:34:33 +02:00
plugins/tiny-devicons-auto-colors: init
This commit is contained in:
parent
d0040391e8
commit
e16d244865
2 changed files with 172 additions and 0 deletions
|
@ -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;
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue