21 lines
559 B
Nix
21 lines
559 B
Nix
{pkgs, ...}: {
|
|
programs = {
|
|
ghostty = {
|
|
enableFishIntegration = true;
|
|
installBatSyntax = true;
|
|
settings = {
|
|
title = "spooky scary tty";
|
|
|
|
command = "${pkgs.fish}/bin/fish --login --interactive";
|
|
|
|
confirm-close-surface = false;
|
|
|
|
keybind = [
|
|
"ctrl+shift+d=new_split:right"
|
|
"ctrl+shift+h=goto_split:left"
|
|
"ctrl+shift+l=goto_split:right"
|
|
];
|
|
};
|
|
};
|
|
};
|
|
}
|