From c691b6b8a16a72659dc7296741f92c6893a9fa06 Mon Sep 17 00:00:00 2001 From: Greg Hellings Date: Wed, 13 Aug 2025 13:39:34 -0500 Subject: [PATCH] Fix Ghostty settings --- home/baseline/shell.nix | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/home/baseline/shell.nix b/home/baseline/shell.nix index ee51861..cf5c63d 100644 --- a/home/baseline/shell.nix +++ b/home/baseline/shell.nix @@ -5,6 +5,7 @@ enable = true; package = if pkgs.stdenv.hostPlatform.isDarwin then pkgs.ghostty-bin else pkgs.ghostty; settings = { + command = "~/.nix-profile/bin/xonsh"; font-family = "Hacker"; theme = "Dracula"; scrollback-limit = "1000000"; @@ -13,10 +14,10 @@ keybind = [ "ctrl+n=new_window" - "ctrl+h=goto_split:left" - "ctrl+j=goto_split:down" - "ctrl+k=goto_split:up" - "ctrl+l=goto_split:right" + "ctrl+shift+h=goto_split:left" + "ctrl+shift+j=goto_split:down" + "ctrl+shift+k=goto_split:up" + "ctrl+shift+l=goto_split:right" "ctrl+b>h=new_split:left" "ctrl+b>j=new_split:down"