neovim-flake/modules/utility/binds/cheatsheet/cheatsheet.nix
2023-03-31 05:20:35 +03:00

11 lines
175 B
Nix

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