reNixos/hand7s/programs/ghostty.nix
s0me1newithhand7s d86fe8db41 chore(hand7s): ghostty upstream
Signed-off-by: s0me1newithhand7s <git+me@hand7s.org>
2026-05-29 16:33:37 +03:00

37 lines
682 B
Nix

{
config,
lib,
...
}: {
programs = {
ghostty = {
enableFishIntegration = true;
installBatSyntax = true;
settings = {
title = "";
bell-features = "system";
command = "${lib.getExe config.programs.nushell.package}";
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"
];
};
};
};
}