mirror of
https://github.com/NotAShelf/neovim-flake.git
synced 2024-11-08 05:45:58 +01:00
7 lines
160 B
Nix
7 lines
160 B
Nix
{lib, ...}: let
|
|
inherit (lib) mkEnableOption;
|
|
in {
|
|
options.vim.utility.icon-picker = {
|
|
enable = mkEnableOption "nerdfonts icon picker for nvim";
|
|
};
|
|
}
|