mirror of
https://github.com/nix-community/nixvim.git
synced 2025-07-13 10:44:34 +02:00
plugins/neo-tree: iconsPackage -> icons provider options
This commit is contained in:
parent
2e281c43e0
commit
e23bd5475c
3 changed files with 37 additions and 7 deletions
|
@ -1,9 +1,11 @@
|
|||
{
|
||||
empty = {
|
||||
plugins.web-devicons.enable = true;
|
||||
plugins.neo-tree.enable = true;
|
||||
};
|
||||
|
||||
defaults = {
|
||||
plugins.web-devicons.enable = true;
|
||||
plugins.neo-tree = {
|
||||
enable = true;
|
||||
|
||||
|
@ -439,10 +441,17 @@
|
|||
};
|
||||
|
||||
no-packages = {
|
||||
plugins.web-devicons.enable = false;
|
||||
plugins.neo-tree = {
|
||||
enable = true;
|
||||
iconsPackage = null;
|
||||
gitPackage = null;
|
||||
};
|
||||
};
|
||||
|
||||
no-icons = {
|
||||
plugins = {
|
||||
web-devicons.enable = false;
|
||||
neo-tree.enable = true;
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue