1
0
Fork 0
mirror of https://github.com/nix-community/nixvim.git synced 2025-12-08 18:11:07 +01:00
nixvim/plugins/by-name/vimux/default.nix
2025-12-07 23:34:03 +00:00

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;
};
}