mirror of
https://github.com/nix-community/nixvim.git
synced 2025-08-28 13:58:41 +02:00
plugins/telescope: iconsPackage -> icons provider options
This commit is contained in:
parent
5ff98645ce
commit
38a183564b
21 changed files with 88 additions and 14 deletions
|
@ -1,9 +1,11 @@
|
|||
{
|
||||
empty = {
|
||||
plugins.web-devicons.enable = true;
|
||||
plugins.telescope.enable = true;
|
||||
};
|
||||
|
||||
example = {
|
||||
plugins.web-devicons.enable = true;
|
||||
plugins.telescope = {
|
||||
enable = true;
|
||||
|
||||
|
@ -19,6 +21,7 @@
|
|||
};
|
||||
|
||||
combine-plugins = {
|
||||
plugins.web-devicons.enable = true;
|
||||
plugins.telescope.enable = true;
|
||||
|
||||
performance.combinePlugins.enable = true;
|
||||
|
@ -32,10 +35,19 @@
|
|||
};
|
||||
|
||||
no-packages = {
|
||||
plugins.web-devicons.enable = false;
|
||||
plugins.telescope = {
|
||||
enable = true;
|
||||
batPackage = null;
|
||||
iconsPackage = null;
|
||||
};
|
||||
};
|
||||
|
||||
mini-icons = {
|
||||
plugins.mini = {
|
||||
enable = true;
|
||||
mockDevIcons = true;
|
||||
modules.icons = { };
|
||||
};
|
||||
plugins.telescope.enable = true;
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue