24 lines
425 B
Nix
24 lines
425 B
Nix
{
|
|
pkgs,
|
|
lib,
|
|
...
|
|
}: {
|
|
programs = {
|
|
ghostty = {
|
|
enableFishIntegration = true;
|
|
installBatSyntax = true;
|
|
settings = {
|
|
title = "spooky scary tty";
|
|
|
|
command = "${lib.getExe pkgs.fish} --login --interactive";
|
|
|
|
confirm-close-surface = false;
|
|
|
|
keybind = [
|
|
"ctrl+shift+d=new_split:right"
|
|
"ctrl+shift+a=new_split:down"
|
|
];
|
|
};
|
|
};
|
|
};
|
|
}
|