mirror of
https://github.com/NotAShelf/nvf.git
synced 2026-01-01 16:45:55 +00:00
7 lines
198 B
Nix
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";
|
|
};
|
|
}
|