plugins/fzf-lua: iconsPackage -> icons provider options

This commit is contained in:
Austin Horstman 2024-09-20 12:50:26 -05:00
parent 59a9652aee
commit cf13d60cd6
No known key found for this signature in database
3 changed files with 57 additions and 22 deletions

View file

@ -1,9 +1,11 @@
{
empty = {
plugins.web-devicons.enable = true;
plugins.fzf-lua.enable = true;
};
example = {
plugins.web-devicons.enable = true;
plugins.fzf-lua = {
enable = true;
@ -55,10 +57,10 @@
};
};
no-packages = {
no-icons = {
plugins.web-devicons.enable = true;
plugins.fzf-lua = {
enable = true;
iconsPackage = null;
};
};
}

View file

@ -1,4 +1,3 @@
{ pkgs, ... }:
{
empty = {
# This test is flaky and fails non-deterministically
@ -31,9 +30,12 @@
# This test is flaky and fails non-deterministically
test.runNvim = false;
plugins.octo = {
enable = true;
settings.picker = "fzf-lua";
plugins = {
octo = {
enable = true;
settings.picker = "fzf-lua";
};
web-devicons.enable = true;
};
};