1
0
Fork 0
mirror of https://github.com/NotAShelf/neovim-flake.git synced 2025-02-12 23:03:19 +01:00
neovim-flake/modules/minimap/minimap-vim/config.nix

17 lines
222 B
Nix

{
pkgs,
config,
lib,
...
}:
with lib;
with builtins; let
cfg = config.vim.minimap.minimap-vim;
in {
config = mkIf cfg.enable {
vim.startPlugins = [
pkgs.code-minimap
"minimap-vim"
];
};
}