18 lines
398 B
Nix
18 lines
398 B
Nix
|
{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;
|
||
|
};
|
||
|
};
|
||
|
}
|