mirror of
https://github.com/nix-community/nixvim.git
synced 2025-07-22 03:35:21 +02:00
plugins/package-info: init
This commit is contained in:
parent
04ad7937c0
commit
d4b1827606
2 changed files with 139 additions and 0 deletions
31
tests/test-sources/plugins/by-name/package-info/default.nix
Normal file
31
tests/test-sources/plugins/by-name/package-info/default.nix
Normal file
|
@ -0,0 +1,31 @@
|
|||
{
|
||||
empty = {
|
||||
plugins.package-info.enable = true;
|
||||
};
|
||||
|
||||
default = {
|
||||
plugins.package-info = {
|
||||
enable = true;
|
||||
|
||||
settings = {
|
||||
colors = {
|
||||
up_to_date = "#3C4048";
|
||||
outdated = "#d19a66";
|
||||
invalid = "#ee4b2b";
|
||||
};
|
||||
icons = {
|
||||
enable = true;
|
||||
style = {
|
||||
up_to_date = "| ";
|
||||
outdated = "| ";
|
||||
invalid = "| ";
|
||||
};
|
||||
};
|
||||
autostart = true;
|
||||
package_manager = "npm";
|
||||
hide_up_to_date = false;
|
||||
hide_unstable_versions = false;
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue