plugins/vimux: init

This commit is contained in:
Gaetan Lepage 2025-01-05 12:06:43 +01:00 committed by nix-infra-bot
parent 2d18a77432
commit 31139e0605
3 changed files with 207 additions and 0 deletions

View file

@ -0,0 +1,25 @@
{ lib, pkgs, ... }:
lib.nixvim.plugins.mkVimPlugin {
name = "vimux";
globalPrefix = "Vimux";
maintainers = [ lib.maintainers.GaetanLepage ];
extraOptions = {
tmuxPackage = lib.mkPackageOption pkgs "tmux" {
nullable = true;
};
};
extraConfig = cfg: {
extraPackages = [ cfg.tmuxPackage ];
};
settingsOptions = import ./settings-options.nix lib;
settingsExample = {
Height = "25";
Orientation = "h";
UseNearest = 0;
};
}