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

12 lines
192 B
Nix

{
config,
lib,
...
}:
with lib;
with builtins; {
options.vim.binds.cheatsheet = {
enable = mkEnableOption "cheatsheet-nvim: searchable cheatsheet for nvim using telescope";
};
}