mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-23 01:08:43 +02:00
plugins/fzf-lua: iconsPackage -> icons provider options
This commit is contained in:
parent
59a9652aee
commit
cf13d60cd6
3 changed files with 57 additions and 22 deletions
|
@ -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;
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
|
@ -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;
|
||||
};
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue