]> Skullheadx's Git Forge - nixos.git/commitdiff
update ghostty
authorAndrew <admonty1@protonmail.com>
Wed, 29 Oct 2025 03:41:45 +0000 (23:41 -0400)
committerAndrew <admonty1@protonmail.com>
Wed, 29 Oct 2025 03:41:45 +0000 (23:41 -0400)
ghostty.nix

index c669cf0d33f021cdb1d3f67d32bb8aad1183a2ef..c7cf640d32bb70ce71f48b10014e873382039aa7 100644 (file)
@@ -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";
-
     };
   };
 }