feat: update a bunch of stuff

Signed-off-by: kjuulh <contact@kjuulh.io>
This commit is contained in:
2025-08-02 18:15:00 +02:00
parent a570bb768c
commit a6f8e2f261
48 changed files with 102 additions and 1223 deletions

View File

@@ -2,7 +2,7 @@
keybinds {
normal {
// uncomment this and adjust key if using copy_on_select=false
// bind "Alt c" { Copy; }
bind "Alt c" { Copy; }
}
locked {
bind "Ctrl g" { SwitchToMode "Normal"; }
@@ -22,10 +22,10 @@ keybinds {
}
pane {
bind "Ctrl p" { SwitchToMode "Normal"; }
bind "h" "Left" { MoveFocus "Left"; }
bind "l" "Right" { MoveFocus "Right"; }
bind "j" "Down" { MoveFocus "Down"; }
bind "k" "Up" { MoveFocus "Up"; }
bind "Ctrl h" "h" "Left" { MoveFocus "Left"; }
bind "Ctrl l" "l" "Right" { MoveFocus "Right"; }
bind "Ctrl j" "j" "Down" { MoveFocus "Down"; }
bind "Ctrl k" "k" "Up" { MoveFocus "Up"; }
bind "p" { SwitchFocus; }
bind "n" { NewPane; SwitchToMode "Normal"; }
bind "d" { NewPane "Down"; SwitchToMode "Normal"; }
@@ -33,7 +33,7 @@ keybinds {
bind "x" { CloseFocus; SwitchToMode "Normal"; }
bind "f" { ToggleFocusFullscreen; SwitchToMode "Normal"; }
bind "z" { TogglePaneFrames; SwitchToMode "Normal"; }
bind "w" { ToggleFloatingPanes; SwitchToMode "Normal"; }
bind "Ctrl w" "w" { ToggleFloatingPanes; SwitchToMode "Normal"; }
bind "e" { TogglePaneEmbedOrFloating; SwitchToMode "Normal"; }
bind "c" { SwitchToMode "RenamePane"; PaneNameInput 0;}
}
@@ -49,8 +49,8 @@ keybinds {
tab {
bind "Ctrl t" { SwitchToMode "Normal"; }
bind "r" { SwitchToMode "RenameTab"; TabNameInput 0; }
bind "h" "Left" "Up" "k" { GoToPreviousTab; }
bind "l" "Right" "Down" "j" { GoToNextTab; }
bind "Ctrl h" "h" "Left" "Up" "k" { GoToPreviousTab; }
bind "Ctrl l" "l" "Right" "Down" "j" { GoToNextTab; }
bind "n" { NewTab; SwitchToMode "Normal"; }
bind "x" { CloseTab; SwitchToMode "Normal"; }
bind "s" { ToggleActiveSyncTab; SwitchToMode "Normal"; }
@@ -193,7 +193,7 @@ plugins {
// - true
// - false (Default)
//
simplified_ui false
simplified_ui true
// Choose the path to the default shell that zellij will use for opening new panes
// Default: $SHELL
@@ -277,11 +277,9 @@ default_layout "compact"
// Examples:
//
// copy_command "xclip -selection clipboard" // x11
{{ if (eq .display "wayland") }}
copy_command "wl-copy" // wayland
{{ else }}
copy_command "pbcopy" // osx
{{ end }}
// Choose the destination for copied text
// Allows using the primary selection buffer (on x11/wayland) instead of the system clipboard.