mirror of
https://github.com/NotAShelf/neovim-flake.git
synced 2024-11-08 00:05:57 +01:00
14 lines
210 B
Nix
14 lines
210 B
Nix
{
|
|
pkgs,
|
|
config,
|
|
lib,
|
|
...
|
|
}:
|
|
with lib;
|
|
with builtins; let
|
|
cfg = config.vim.minimap.codewindow;
|
|
in {
|
|
options.vim.minimap.codewindow = {
|
|
enable = mkEnableOption "Enable minimap-vim plugin";
|
|
};
|
|
}
|