1
0
Fork 0
mirror of https://github.com/nix-community/nixvim.git synced 2025-11-18 16:29:40 +01:00
nixvim/tests/test-sources/plugins/by-name/package-info/default.nix
2025-10-01 23:54:08 +00:00

59 lines
1.1 KiB
Nix

{
empty = {
plugins.package-info.enable = true;
};
default = {
plugins.package-info = {
enable = true;
settings = {
highlights = {
up_to_date.fg = "#3C4048";
outdated.fg = "#d19a66";
invalid.fg = "#ee4b2b";
};
icons = {
enable = true;
style = {
up_to_date = "| ";
outdated = "| ";
invalid = "| ";
};
};
autostart = true;
package_manager = "npm";
hide_up_to_date = false;
hide_unstable_versions = false;
};
};
};
example = {
plugins.package-info = {
enable = true;
settings = {
icons.style = {
up_to_date = "| ";
outdated = "| ";
};
hide_up_to_date = true;
package_manager = "npm";
};
};
};
with-telescope = {
plugins = {
telescope.enable = true;
package-info = {
enable = true;
enableTelescope = true;
};
web-devicons.enable = true;
};
};
}