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/minimap/minimap-vim/minimap-vim.nix
2023-04-02 19:59:08 +03:00

11 lines
174 B
Nix

{
config,
lib,
...
}:
with lib;
with builtins; {
options.vim.minimap.minimap-vim = {
enable = mkEnableOption "Enable minimap-vim plugin for minimap view";
};
}