chore: node bump

This commit is contained in:
Rasyidan Akbar F. 2026-03-26 13:24:40 +07:00
commit 4a24d4d9d8
3 changed files with 19 additions and 3 deletions

View file

@ -6,6 +6,7 @@
settings = {
background_opacity = "0.9";
confirm_os_window_close = 0;
enabled_layouts = "splits,stack";
# Gruvbox colors
background = "#282828";
@ -32,5 +33,20 @@
color14 = "#8ec07c";
color15 = "#ebdbb2";
};
keybindings = {
# Split bindings (cmd+a prefix, matching old ghostty bindings)
"cmd+a>v" = "launch --location=vsplit --cwd=current";
"cmd+a>s" = "launch --location=hsplit --cwd=current";
# Navigation
"cmd+a>h" = "neighboring_window left";
"cmd+a>j" = "neighboring_window bottom";
"cmd+a>k" = "neighboring_window top";
"cmd+a>l" = "neighboring_window right";
# Other actions
"cmd+a>n" = "new_window_with_cwd";
"cmd+a>z" = "toggle_layout stack";
"cmd+a>x" = "close_window";
};
};
}

View file

@ -64,7 +64,7 @@ let
uvPackage = getPkg "uv";
goPackage = getPkg "go";
nodePackage = if builtins.hasAttr "nodejs_20" pkgs then pkgs.nodejs_20 else getPkg "nodejs";
nodePackage = if builtins.hasAttr "nodejs_22" pkgs then pkgs.nodejs_22 else getPkg "nodejs";
cargoPackage = getPkg "cargo";
bunPackage = getPkg "bun";