nix-community.nixvim/tests/test-sources/plugins/by-name/wezterm/default.nix
Sammy Etur abe2211aef
plugins/wezterm: init
Co-authored-by: Austin Horstman <khaneliman12@gmail.com>
Co-authored-by: Gaétan Lepage <33058747+GaetanLepage@users.noreply.github.com>
2024-12-27 17:17:59 -06:00

23 lines
353 B
Nix

{
empty =
{ pkgs, ... }:
{
plugins.wezterm = {
enable = true;
weztermPackage = pkgs.wezterm;
};
};
defaults =
{ pkgs, ... }:
{
plugins.wezterm = {
enable = true;
weztermPackage = pkgs.wezterm;
settings = {
create_commands = true;
};
};
};
}