1
0
Fork 0
mirror of https://github.com/NotAShelf/neovim-flake.git synced 2025-01-05 22:39:47 +01:00
neovim-flake/modules/utility/binds/cheatsheet/cheatsheet.nix

15 lines
227 B
Nix
Raw Normal View History

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