From e28b11b88995c10782135b4eae9dcb5122133ab0 Mon Sep 17 00:00:00 2001 From: albert Date: Tue, 7 Jan 2025 10:58:04 -0800 Subject: [PATCH] Update Ghostty --- home-manager/common/software/gui/ghostty.nix | 36 ++++++++++---------- 1 file changed, 18 insertions(+), 18 deletions(-) diff --git a/home-manager/common/software/gui/ghostty.nix b/home-manager/common/software/gui/ghostty.nix index ca705e79..99df558e 100644 --- a/home-manager/common/software/gui/ghostty.nix +++ b/home-manager/common/software/gui/ghostty.nix @@ -7,22 +7,22 @@ programs.bash.sessionVariables = { TERM = "xterm-256color"; }; programs.fish.shellInit = ''set TERM "xterm-256color ''; - programs.ghostty = { - # TODO Re-enable this when 25.05 is out or when this is compabile with 24.11 - enable = false; - enableBashIntegration = true; - enableFishIntegration = true; - enableZshIntegration = true; - installBatSyntax = true; - installVimSyntax = true; - settings = { - font-size = 10; - cursor-style = "bar"; - keybind = [ - "shift+right=next_tab" - "shift+left=previous_tab" - "shift+up=toggle_tab_overview" - ]; - }; - }; + # TODO Re-enable this when 25.05 is out or when this is compabile with 24.11 +# programs.ghostty = { +# enable = true; +# enableBashIntegration = true; +# enableFishIntegration = true; +# enableZshIntegration = true; +# installBatSyntax = true; +# installVimSyntax = true; +# settings = { +# font-size = 10; +# cursor-style = "bar"; +# keybind = [ +# "shift+right=next_tab" +# "shift+left=previous_tab" +# "shift+up=toggle_tab_overview" +# ]; +# }; +# }; }