From 5dff7ceb12231cf6f5ee36398b37b651dc3871a1 Mon Sep 17 00:00:00 2001 From: Hadi <112569860+anotherhadi@users.noreply.github.com> Date: Thu, 21 May 2026 13:21:36 +0200 Subject: [PATCH] remove useless shortcuts Signed-off-by: Hadi <112569860+anotherhadi@users.noreply.github.com> --- home/programs/ghostty/default.nix | 22 ++++++++++------------ 1 file changed, 10 insertions(+), 12 deletions(-) diff --git a/home/programs/ghostty/default.nix b/home/programs/ghostty/default.nix index 70a019e..ebd4690 100644 --- a/home/programs/ghostty/default.nix +++ b/home/programs/ghostty/default.nix @@ -1,13 +1,11 @@ -{ pkgs, ... }: -let +{pkgs, ...}: let cursorShaders = pkgs.fetchFromGitHub { owner = "sahaj-b"; repo = "ghostty-cursor-shaders"; rev = "06d4e90fb5410e9c4d0b3131584060adddf89406"; hash = "sha256-G/UIr1bKnxn1AcHl/4FL/jou6b7M2VeREslYVELxdmw="; }; -in -{ +in { home.sessionVariables = { TERMINAL = "ghostty"; TERM = "ghostty"; @@ -30,14 +28,14 @@ in custom-shader = "${cursorShaders}/cursor_warp.glsl"; custom-shader-animation = "always"; keybind = [ - "ctrl+j=goto_split:left" - "ctrl+i=goto_split:up" - "ctrl+k=goto_split:down" - "ctrl+l=goto_split:right" - "shift+ctrl+h=new_split:left" - "shift+ctrl+j=new_split:down" - "shift+ctrl+k=new_split:up" - "shift+ctrl+l=new_split:right" + # "ctrl+j=goto_split:left" + # "ctrl+i=goto_split:up" + # "ctrl+k=goto_split:down" + # "ctrl+l=goto_split:right" + # "shift+ctrl+h=new_split:left" + # "shift+ctrl+j=new_split:down" + # "shift+ctrl+k=new_split:up" + # "shift+ctrl+l=new_split:right" "shift+ctrl+tab=new_tab" ]; };