mirror of
https://github.com/nix-community/nixvim.git
synced 2025-12-08 18:11:07 +01:00
18 lines
375 B
Nix
18 lines
375 B
Nix
{ lib, ... }:
|
|
lib.nixvim.plugins.mkVimPlugin {
|
|
name = "vimux";
|
|
globalPrefix = "Vimux";
|
|
description = "Easily interact with tmux from vim.";
|
|
|
|
maintainers = [ lib.maintainers.GaetanLepage ];
|
|
|
|
dependencies = [ "tmux" ];
|
|
|
|
settingsOptions = import ./settings-options.nix lib;
|
|
|
|
settingsExample = {
|
|
Height = "25";
|
|
Orientation = "h";
|
|
UseNearest = 0;
|
|
};
|
|
}
|