universe/home/ghostty/default.nix

18 lines
398 B
Nix
Raw Normal View History

2025-03-02 11:53:58 +00:00
{pkgs, ...}: {
programs.ghostty = {
enable = true;
enableFishIntegration = true;
installBatSyntax = true;
installVimSyntax = false;
clearDefaultKeybinds = true;
settings = {
window-padding-x = 10;
window-padding-y = 10;
window-vsync = true;
window-decoration = "none";
command = "tmux new";
confirm-close-surface = false;
};
};
}