nix-community.nixvim/plugins/by-name/vimux/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

28 lines
539 B
Nix
Raw Normal View History

2025-04-07 23:19:01 +02:00
{ lib, ... }:
2025-01-05 12:06:43 +01:00
lib.nixvim.plugins.mkVimPlugin {
name = "vimux";
globalPrefix = "Vimux";
maintainers = [ lib.maintainers.GaetanLepage ];
2025-04-07 23:19:01 +02:00
imports = [
# TODO: added 2025-04-07, remove after 25.05
(lib.nixvim.mkRemovedPackageOptionModule {
plugin = "tmux";
packageName = "tmux";
})
];
2025-01-05 12:06:43 +01:00
2025-04-07 23:19:01 +02:00
extraConfig = {
dependencies.tmux.enable = lib.mkDefault true;
2025-01-05 12:06:43 +01:00
};
settingsOptions = import ./settings-options.nix lib;
settingsExample = {
Height = "25";
Orientation = "h";
UseNearest = 0;
};
}