nvf/modules/utility/binds/cheatsheet/cheatsheet.nix
2024-03-23 20:31:33 -04:00

12 lines
214 B
Nix

{
config,
lib,
...
}: let
inherit (lib.options) mkEnableOption;
in {
options.vim.binds.cheatsheet = {
enable = mkEnableOption "cheatsheet-nvim: searchable cheatsheet for nvim using telescope";
};
}