reNixos/hand7s/programs/ghostty.nix
2025-04-27 12:47:02 +03:00

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"
];
};
};
};
}