1
0
Fork 0
mirror of https://github.com/NotAShelf/neovim-flake.git synced 2025-01-04 05:09:48 +01:00
neovim-flake/modules/utility/binds/cheatsheet/cheatsheet.nix
2023-04-02 19:59:08 +03:00

11 lines
199 B
Nix

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