plugins/wezterm: init

Co-authored-by: Austin Horstman <khaneliman12@gmail.com>
Co-authored-by: Gaétan Lepage <33058747+GaetanLepage@users.noreply.github.com>
This commit is contained in:
Sammy Etur 2024-12-01 19:15:29 +01:00 committed by Austin Horstman
parent 3fa487c81d
commit abe2211aef
No known key found for this signature in database
2 changed files with 60 additions and 0 deletions

View file

@ -0,0 +1,23 @@
{
empty =
{ pkgs, ... }:
{
plugins.wezterm = {
enable = true;
weztermPackage = pkgs.wezterm;
};
};
defaults =
{ pkgs, ... }:
{
plugins.wezterm = {
enable = true;
weztermPackage = pkgs.wezterm;
settings = {
create_commands = true;
};
};
};
}