nvf/modules/utility/binds/cheatsheet/cheatsheet.nix
2023-04-02 19:16:04 +03:00

12 lines
175 B
Nix

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