Skip to content

Instantly share code, notes, and snippets.

@goropikari
Last active August 2, 2025 17:28
Show Gist options
  • Select an option

  • Save goropikari/920703ceda10b59388700965e82883cb to your computer and use it in GitHub Desktop.

Select an option

Save goropikari/920703ceda10b59388700965e82883cb to your computer and use it in GitHub Desktop.
zellij
keybinds clear-defaults=true {
pane {
bind "p" { NewPane "Right"; SwitchToMode "Normal"; }
bind "w" { CloseFocus; SwitchToMode "Normal"; }
bind "h" "Left" "Alt h" { MoveFocus "Left"; }
bind "n" "Right" "Alt n" { MoveFocus "Right"; }
bind "r" { SwitchToMode "Resize"; }
}
tab {
bind "t" { NewTab; }
bind "w" { CloseTab; }
bind "h" "Left" "Alt h" { GoToPreviousTab; }
bind "n" "Right" "Alt n" { GoToNextTab; }
}
resize {
bind "h" "Left" { Resize "Increase Left"; }
bind "n" "Right" { Resize "Increase Right"; }
}
shared_except "locked" {
bind "Ctrl q" { Detach; }
}
shared_except "pane" "locked" {
bind "Alt p" { SwitchToMode "Pane"; }
}
shared_except "tab" "locked" {
bind "Alt t" { SwitchToMode "Tab"; }
}
shared_except "resize" "locked" {
bind "Alt r" { SwitchToMode "Resize"; }
}
shared_except "normal" "locked" {
bind "Enter" { SwitchToMode "Normal"; }
}
}
plugins {}
load_plugins {}
ui {
pane_frames {
hide_session_name true
}
}
default_mode "normal"
default_shell "bash"
simplified_ui true
// theme "kanagawa"
// theme "gruvbox-dark"
// theme "iceberg-dark"
// theme "lucario"
// theme "nightfox"
// theme "nord"
theme "everforest-dark"
default_layout "default"
auto_layout false
pane_frames false
session_name "My singleton session"
attach_to_session true
mirror_session false
show_startup_tips false
show_release_notes false
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment