mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-23 17:28:39 +02:00
Co-authored-by: Austin Horstman <khaneliman12@gmail.com> Co-authored-by: Gaétan Lepage <33058747+GaetanLepage@users.noreply.github.com>
23 lines
353 B
Nix
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;
|
|
};
|
|
};
|
|
};
|
|
}
|