summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrew <admonty1@protonmail.com>2025-10-28 23:41:45 -0400
committerAndrew <admonty1@protonmail.com>2025-10-28 23:41:45 -0400
commita4b96458d1454f8c854bbeb0023de425e1503d23 (patch)
treed6db4c4613990622ad491b23455b5843b468d332
parentmake hyprland better (diff)
downloadnixos-a4b96458d1454f8c854bbeb0023de425e1503d23.tar.gz
nixos-a4b96458d1454f8c854bbeb0023de425e1503d23.tar.bz2
nixos-a4b96458d1454f8c854bbeb0023de425e1503d23.zip
update ghostty
Diffstat (limited to '')
-rw-r--r--ghostty.nix14
1 files changed, 10 insertions, 4 deletions
diff --git a/ghostty.nix b/ghostty.nix
index c669cf0..c7cf640 100644
--- a/ghostty.nix
+++ b/ghostty.nix
@@ -3,22 +3,28 @@
pkgs,
inputs,
...
-}:
-{
+}: {
programs.ghostty = {
enable = true;
settings = {
- shell-integration = "zsh";
+ shell-integration = "fish";
shell-integration-features = true;
mouse-hide-while-typing = true;
+ cursor-click-to-move = true;
+ mouse-shift-capture = true;
+ scrollback-limit = 10000;
link-url = true;
+ link-previews = true;
background-opacity = 0.8;
background-blur = true;
+ window-inherit-working-directory = true;
+ window-save-state = "always";
+ copy-on-select = "clipboard";
clipboard-read = "allow";
+
clipboard-write = "allow";
confirm-close-surface = false;
auto-update = "off";
-
};
};
}