mirror of
https://github.com/NotAShelf/nvf.git
synced 2024-11-02 03:21:14 +00:00
8 lines
160 B
Nix
8 lines
160 B
Nix
{lib, ...}: let
|
|
inherit (lib) mkEnableOption;
|
|
in {
|
|
options.vim.utility.icon-picker = {
|
|
enable = mkEnableOption "nerdfonts icon picker for nvim";
|
|
};
|
|
}
|