ghostty: init

This commit is contained in:
cy 2025-01-21 12:23:16 -05:00
parent 6a2269f591
commit aca309a9c0
6 changed files with 169 additions and 27 deletions

18
home/ghostty.nix Normal file
View file

@ -0,0 +1,18 @@
{ ... }: {
programs.ghostty = {
enable = true;
enableZshIntegration = true;
clearDefaultKeybinds = true;
settings = {
theme = "iceberg-dark";
font-family = "IBM Plex Mono";
font-size = "12";
window-decoration = false;
confirm-close-surface = false;
keybind = [
"ctrl+q=quit"
"ctrl+shift+c=copy_to_clipboard"
];
};
};
}