nvf/modules/plugins/utility/binds/cheatsheet/cheatsheet.nix
2024-07-08 17:08:13 -04:00

7 lines
198 B
Nix

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