reNixos/hand7s/programs/ghostty.nix
s0me1newithhand7s 7d44c83d61 hand7s: upstream
Signed-off-by: s0me1newithhand7s <git+me@hand7s.org>
2026-02-08 22:43:08 +03:00

37 lines
658 B
Nix

{
pkgs,
lib,
...
}: {
programs = {
ghostty = {
enableFishIntegration = true;
installBatSyntax = true;
settings = {
title = "";
bell-features = "system";
command = "${lib.getExe pkgs.fish}";
confirm-close-surface = false;
cursor-style-blink = true;
cursor-style = "bar";
mouse-hide-while-typing = true;
working-directory = "home";
window-save-state = "never";
window-inherit-working-directory = false;
keybind = [
"ctrl+shift+d=new_split:right"
"ctrl+shift+a=new_split:down"
];
};
};
};
}