mirror of
https://codeberg.org/tmayoff/.dotfiles.git
synced 2025-12-06 08:48:34 -05:00
ghostty config
This commit is contained in:
parent
b47baa0473
commit
432bd906c7
6 changed files with 53 additions and 75 deletions
29
dot_config/flake/modules/home/ghostty.nix
Normal file
29
dot_config/flake/modules/home/ghostty.nix
Normal file
|
|
@ -0,0 +1,29 @@
|
|||
{pkgs, ...}: {
|
||||
programs.ghostty = {
|
||||
enable = true;
|
||||
|
||||
package =
|
||||
if pkgs.stdenv.isDarwin
|
||||
then pkgs.unstable.ghostty-bin
|
||||
else pkgs.unstable.ghostty;
|
||||
|
||||
settings = {
|
||||
auto-update = false;
|
||||
|
||||
theme = "light:Rose Pine Dawn,dark:Rose Pine";
|
||||
macos-option-as-alt = "left";
|
||||
|
||||
quick-terminal-size = "50%";
|
||||
|
||||
shell-integration-features = ["ssh-terminfo"];
|
||||
|
||||
right-click-action = "copy-or-paste";
|
||||
|
||||
keybind = [
|
||||
"alt+left=unbind"
|
||||
"alt+right=unbind"
|
||||
"global:f12=toggle_quick_terminal"
|
||||
];
|
||||
};
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue