1
0
Fork 0
mirror of https://github.com/nix-community/nixvim.git synced 2025-12-09 02:21:07 +01:00
nixvim/plugins/by-name/wezterm/default.nix
2025-12-07 23:34:03 +00:00

26 lines
526 B
Nix

{
lib,
...
}:
let
inherit (lib.nixvim) defaultNullOpts;
in
lib.nixvim.plugins.neovim.mkNeovimPlugin {
name = "wezterm";
package = "wezterm-nvim";
description = "Neovim plugin for WezTerm, a GPU-accelerated terminal emulator and multiplexer.";
maintainers = [ lib.maintainers.khaneliman ];
dependencies = [ "wezterm" ];
settingsOptions = {
create_commands = defaultNullOpts.mkBool true ''
Whether to create plugin commands.
'';
};
settingsExample = {
create_commands = false;
};
}