refactor(wezterm): remove unused pane rotation keybinds
Remove PageUp/PageDown pane rotation keybinds that don't align with wezterm workflow. The static pane layout approach (fixed splits + zoom toggle) doesn't benefit from rotation like dynamic window managers do. Also update CLAUDE.md to clarify that Home Manager is a NixOS module, so just build/switch commands handle both system and user configurations together.
This commit is contained in:
parent
2e0a288a1a
commit
ee7141e74e
2 changed files with 4 additions and 16 deletions
|
@ -9,16 +9,16 @@ This is a NixOS and Home Manager configuration using flakes architecture, managi
|
|||
## Common Development Commands
|
||||
|
||||
### System Management
|
||||
- `just build <hostname>` - Build system configuration without switching
|
||||
- `just switch <hostname>` - Build and switch to new system configuration (requires sudo)
|
||||
- `just build <hostname>` - Build system and home-manager configuration without switching
|
||||
- `just switch <hostname>` - Build and switch to new system and home-manager configuration (requires sudo)
|
||||
- `just deploy <hostname>` - Deploy configuration to remote host
|
||||
|
||||
**Note**: Home Manager is configured as a NixOS module, so `just build/switch` commands handle both system and user configurations together.
|
||||
|
||||
### Nix Operations
|
||||
- `nix build` - Build packages defined in flake
|
||||
- `nix fmt` - Format Nix files using alejandra formatter
|
||||
- `nix flake update` - Update all flake inputs
|
||||
- `nixos-rebuild build --flake .#<hostname>` - Build specific host configuration
|
||||
- `home-manager switch --flake .#sajenim@<hostname>` - Switch Home Manager configuration
|
||||
|
||||
### Development Environment
|
||||
- `nix develop` - Enter development shell with `just` available
|
||||
|
|
|
@ -138,18 +138,6 @@ config.keys = {
|
|||
action = wezterm.action.ActivatePaneDirection("Next"),
|
||||
},
|
||||
|
||||
{ -- Rotate panes counter-clockwise
|
||||
key = "PageUp",
|
||||
mods = "ALT",
|
||||
action = wezterm.action.RotatePanes("CounterClockwise"),
|
||||
},
|
||||
|
||||
{ -- Rotate panes clockwise
|
||||
key = "PageDown",
|
||||
mods = "ALT",
|
||||
action = wezterm.action.RotatePanes("Clockwise"),
|
||||
},
|
||||
|
||||
{ -- Focus largest (master) pane
|
||||
key = "Delete",
|
||||
mods = "ALT",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue