neovim-flake/modules/utility/binds/cheatsheet/cheatsheet.nix

12 lines
206 B
Nix
Raw Normal View History

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