mirror of
https://github.com/NotAShelf/nvf.git
synced 2024-11-02 11:31:15 +00:00
20 lines
366 B
Nix
20 lines
366 B
Nix
{
|
|
pkgs,
|
|
config,
|
|
lib,
|
|
...
|
|
}:
|
|
with lib;
|
|
with builtins; let
|
|
cfg = config.vim.minimap.minimap-vim;
|
|
in {
|
|
options.vim.minimap.minimap-vim = {
|
|
enable = mkEnableOption "Enable minimap-vim plugin";
|
|
};
|
|
|
|
config = mkIf cfg.enable {
|
|
# vim.startPlugins = ["minimap-vim"];
|
|
# TODO: figure out a way to import the code-minimap package from nixpkgs
|
|
};
|
|
}
|