nix/home-manager/common/software/gui/ghostty.nix
2025-01-06 13:10:52 -08:00

22 lines
512 B
Nix

{ theme, ... }: {
imports = [ ../../../../stylix/themes/${theme}/home-manager/ghostty.nix ];
programs.ghostty = {
enable = true;
enableBashIntegration = true;
enableFishIntegration = true;
enableZshIntegration = true;
installBatSyntax = true;
installVimSyntax = true;
settings = {
font-size = 10;
cursor-style = "bar";
keybind = [
"shift+right=next_tab"
"shift+left=previous_tab"
"shift+up=toggle_tab_overview"
];
};
};
}