zellij config update
This commit is contained in:
parent
fe5f80c49c
commit
0a6aadae21
3 changed files with 376 additions and 574 deletions
|
@ -82,8 +82,8 @@
|
||||||
|
|
||||||
- name: Lay down zellij config
|
- name: Lay down zellij config
|
||||||
file:
|
file:
|
||||||
src: ~/.dotfiles/zellij/config.yaml
|
src: ~/.dotfiles/zellij/config.kdl
|
||||||
dest: ~/.config/zellij/config.yaml
|
dest: ~/.config/zellij/config.kdl
|
||||||
state: link
|
state: link
|
||||||
|
|
||||||
- name: Make sure ~/.config/lsd exists
|
- name: Make sure ~/.config/lsd exists
|
||||||
|
|
374
zellij/config.kdl
Normal file
374
zellij/config.kdl
Normal file
|
@ -0,0 +1,374 @@
|
||||||
|
keybinds clear-defaults=true {
|
||||||
|
normal {
|
||||||
|
bind "Ctrl g" { SwitchToMode "locked"; }
|
||||||
|
bind "Ctrl p" { SwitchToMode "pane"; }
|
||||||
|
bind "Ctrl n" { SwitchToMode "resize"; }
|
||||||
|
bind "Ctrl t" { SwitchToMode "tab"; }
|
||||||
|
bind "Ctrl s" { SwitchToMode "scroll"; }
|
||||||
|
bind "Ctrl o" { SwitchToMode "session"; }
|
||||||
|
bind "Ctrl h" { SwitchToMode "move"; }
|
||||||
|
bind "Ctrl a" { SwitchToMode "tmux"; }
|
||||||
|
bind "Ctrl q" { Quit; }
|
||||||
|
bind "Alt n" { NewPane; }
|
||||||
|
bind "Alt h" { MoveFocusOrTab "Left"; }
|
||||||
|
bind "Alt l" { MoveFocusOrTab "Right"; }
|
||||||
|
bind "Alt j" { MoveFocus "Down"; }
|
||||||
|
bind "Alt k" { MoveFocus "Up"; }
|
||||||
|
bind "Alt [" { FocusPreviousPane; }
|
||||||
|
bind "Alt ]" { FocusNextPane; }
|
||||||
|
bind "Alt =" { Resize "Increase"; }
|
||||||
|
bind "Alt +" { Resize "Increase"; }
|
||||||
|
bind "Alt -" { Resize "Decrease"; }
|
||||||
|
}
|
||||||
|
locked {
|
||||||
|
bind "Ctrl g" { SwitchToMode "normal"; }
|
||||||
|
}
|
||||||
|
pane {
|
||||||
|
bind "Ctrl g" { SwitchToMode "locked"; }
|
||||||
|
bind "Ctrl n" { SwitchToMode "resize"; }
|
||||||
|
bind "Ctrl t" { SwitchToMode "tab"; }
|
||||||
|
bind "Ctrl p" "Enter" "Space" "Esc" { SwitchToMode "normal"; }
|
||||||
|
bind "Ctrl s" { SwitchToMode "scroll"; }
|
||||||
|
bind "Ctrl o" { SwitchToMode "session"; }
|
||||||
|
bind "Ctrl h" { SwitchToMode "move"; }
|
||||||
|
bind "Ctrl b" { SwitchToMode "tmux"; }
|
||||||
|
bind "Ctrl q" { Quit; }
|
||||||
|
bind "h" "Left" { MoveFocus "Left"; }
|
||||||
|
bind "l" "Right" { MoveFocus "Right"; }
|
||||||
|
bind "j" "Down" { MoveFocus "Down"; }
|
||||||
|
bind "k" "Up" { MoveFocus "Up"; }
|
||||||
|
bind "p" { SwitchFocus; }
|
||||||
|
bind "n" { NewPane; SwitchToMode "normal"; }
|
||||||
|
bind "d" { NewPane "Down"; SwitchToMode "normal"; }
|
||||||
|
bind "r" { NewPane "Right"; SwitchToMode "normal"; }
|
||||||
|
bind "x" { CloseFocus; SwitchToMode "normal"; }
|
||||||
|
bind "f" { ToggleFocusFullscreen; SwitchToMode "normal"; }
|
||||||
|
bind "z" { TogglePaneFrames; SwitchToMode "normal"; }
|
||||||
|
bind "w" { ToggleFloatingPanes; SwitchToMode "normal"; }
|
||||||
|
bind "e" { TogglePaneEmbedOrFloating; SwitchToMode "normal"; }
|
||||||
|
bind "Alt n" { NewPane; }
|
||||||
|
bind "Alt h" { MoveFocus "Left"; }
|
||||||
|
bind "Alt l" { MoveFocus "Right"; }
|
||||||
|
bind "Alt j" { MoveFocus "Down"; }
|
||||||
|
bind "Alt k" { MoveFocus "Up"; }
|
||||||
|
bind "Alt [" { FocusPreviousPane; }
|
||||||
|
bind "Alt ]" { FocusNextPane; }
|
||||||
|
bind "Alt =" { Resize "Increase"; }
|
||||||
|
bind "Alt +" { Resize "Increase"; }
|
||||||
|
bind "Alt -" { Resize "Decrease"; }
|
||||||
|
bind "c" { SwitchToMode "RenamePane"; PaneNameInput 0; }
|
||||||
|
}
|
||||||
|
tab {
|
||||||
|
bind "Ctrl g" { SwitchToMode "locked"; }
|
||||||
|
bind "Ctrl p" { SwitchToMode "pane"; }
|
||||||
|
bind "Ctrl n" { SwitchToMode "resize"; }
|
||||||
|
bind "Ctrl t" "Enter" "Space" "Esc" { SwitchToMode "normal"; }
|
||||||
|
bind "Ctrl s" { SwitchToMode "scroll"; }
|
||||||
|
bind "Ctrl h" { SwitchToMode "move"; }
|
||||||
|
bind "Ctrl b" { SwitchToMode "tmux"; }
|
||||||
|
bind "Ctrl o" { SwitchToMode "session"; }
|
||||||
|
bind "r" { SwitchToMode "RenameTab"; TabNameInput 0; }
|
||||||
|
bind "Ctrl q" { Quit; }
|
||||||
|
bind "h" "Left" "Up" "k" { GoToPreviousTab; }
|
||||||
|
bind "l" "Right" "Down" "j" { GoToNextTab; }
|
||||||
|
bind "n" { NewTab; SwitchToMode "normal"; }
|
||||||
|
bind "x" { CloseTab; SwitchToMode "normal"; }
|
||||||
|
bind "s" { ToggleActiveSyncTab; SwitchToMode "normal"; }
|
||||||
|
bind "1" { GoToTab 1; SwitchToMode "normal"; }
|
||||||
|
bind "2" { GoToTab 2; SwitchToMode "normal"; }
|
||||||
|
bind "3" { GoToTab 3; SwitchToMode "normal"; }
|
||||||
|
bind "4" { GoToTab 4; SwitchToMode "normal"; }
|
||||||
|
bind "5" { GoToTab 5; SwitchToMode "normal"; }
|
||||||
|
bind "6" { GoToTab 6; SwitchToMode "normal"; }
|
||||||
|
bind "7" { GoToTab 7; SwitchToMode "normal"; }
|
||||||
|
bind "8" { GoToTab 8; SwitchToMode "normal"; }
|
||||||
|
bind "9" { GoToTab 9; SwitchToMode "normal"; }
|
||||||
|
bind "Tab" { ToggleTab; }
|
||||||
|
bind "Alt n" { NewPane; }
|
||||||
|
bind "Alt h" { MoveFocus "Left"; }
|
||||||
|
bind "Alt l" { MoveFocus "Right"; }
|
||||||
|
bind "Alt j" { MoveFocus "Down"; }
|
||||||
|
bind "Alt k" { MoveFocus "Up"; }
|
||||||
|
bind "Alt [" { FocusPreviousPane; }
|
||||||
|
bind "Alt ]" { FocusNextPane; }
|
||||||
|
bind "Alt =" { Resize "Increase"; }
|
||||||
|
bind "Alt +" { Resize "Increase"; }
|
||||||
|
bind "Alt -" { Resize "Decrease"; }
|
||||||
|
}
|
||||||
|
resize {
|
||||||
|
bind "Ctrl g" { SwitchToMode "locked"; }
|
||||||
|
bind "Ctrl p" { SwitchToMode "pane"; }
|
||||||
|
bind "Ctrl t" { SwitchToMode "tab"; }
|
||||||
|
bind "Ctrl n" "Enter" "Space" "Esc" { SwitchToMode "normal"; }
|
||||||
|
bind "Ctrl s" { SwitchToMode "scroll"; }
|
||||||
|
bind "Ctrl o" { SwitchToMode "session"; }
|
||||||
|
bind "Ctrl h" { SwitchToMode "move"; }
|
||||||
|
bind "Ctrl b" { SwitchToMode "tmux"; }
|
||||||
|
bind "Ctrl q" { Quit; }
|
||||||
|
bind "h" "Left" { Resize "Left"; }
|
||||||
|
bind "j" "Down" { Resize "Down"; }
|
||||||
|
bind "k" "Up" { Resize "Up"; }
|
||||||
|
bind "l" "Right" { Resize "Right"; }
|
||||||
|
bind "=" { Resize "Increase"; }
|
||||||
|
bind "+" { Resize "Increase"; }
|
||||||
|
bind "-" { Resize "Decrease"; }
|
||||||
|
bind "Alt n" { NewPane; }
|
||||||
|
bind "Alt h" { MoveFocus "Left"; }
|
||||||
|
bind "Alt l" { MoveFocus "Right"; }
|
||||||
|
bind "Alt j" { MoveFocus "Down"; }
|
||||||
|
bind "Alt k" { MoveFocus "Up"; }
|
||||||
|
bind "Alt [" { FocusPreviousPane; }
|
||||||
|
bind "Alt ]" { FocusNextPane; }
|
||||||
|
bind "Alt =" { Resize "Increase"; }
|
||||||
|
bind "Alt +" { Resize "Increase"; }
|
||||||
|
bind "Alt -" { Resize "Decrease"; }
|
||||||
|
}
|
||||||
|
move {
|
||||||
|
bind "Ctrl g" { SwitchToMode "locked"; }
|
||||||
|
bind "Ctrl p" { SwitchToMode "pane"; }
|
||||||
|
bind "Ctrl t" { SwitchToMode "tab"; }
|
||||||
|
bind "Ctrl n" { SwitchToMode "resize"; }
|
||||||
|
bind "Ctrl h" "Enter" "Space" "Esc" { SwitchToMode "normal"; }
|
||||||
|
bind "Ctrl s" { SwitchToMode "scroll"; }
|
||||||
|
bind "Ctrl o" { SwitchToMode "session"; }
|
||||||
|
bind "Ctrl q" { Quit; }
|
||||||
|
bind "n" "Tab" { MovePane; }
|
||||||
|
bind "h" "Left" { MovePane "Left"; }
|
||||||
|
bind "j" "Down" { MovePane "Down"; }
|
||||||
|
bind "k" "Up" { MovePane "Up"; }
|
||||||
|
bind "l" "Right" { MovePane "Right"; }
|
||||||
|
bind "Alt n" { NewPane; }
|
||||||
|
bind "Alt h" { MoveFocus "Left"; }
|
||||||
|
bind "Alt l" { MoveFocus "Right"; }
|
||||||
|
bind "Alt j" { MoveFocus "Down"; }
|
||||||
|
bind "Alt k" { MoveFocus "Up"; }
|
||||||
|
bind "Alt [" { FocusPreviousPane; }
|
||||||
|
bind "Alt ]" { FocusNextPane; }
|
||||||
|
bind "Alt =" { Resize "Increase"; }
|
||||||
|
bind "Alt +" { Resize "Increase"; }
|
||||||
|
bind "Alt -" { Resize "Decrease"; }
|
||||||
|
}
|
||||||
|
scroll {
|
||||||
|
bind "Ctrl s" "Space" "Enter" "Esc" { SwitchToMode "normal"; }
|
||||||
|
bind "Ctrl t" { SwitchToMode "tab"; }
|
||||||
|
bind "Ctrl g" { SwitchToMode "locked"; }
|
||||||
|
bind "Ctrl p" { SwitchToMode "pane"; }
|
||||||
|
bind "Ctrl h" { SwitchToMode "move"; }
|
||||||
|
bind "Ctrl b" { SwitchToMode "tmux"; }
|
||||||
|
bind "Ctrl o" { SwitchToMode "session"; }
|
||||||
|
bind "Ctrl n" { SwitchToMode "resize"; }
|
||||||
|
bind "Ctrl c" { ScrollToBottom; SwitchToMode "normal"; }
|
||||||
|
bind "Ctrl q" { Quit; }
|
||||||
|
bind "j" "Down" { ScrollDown; }
|
||||||
|
bind "k" "Up" { ScrollUp; }
|
||||||
|
bind "Ctrl f" "PageDown" "Right" "l" { PageScrollDown; }
|
||||||
|
bind "Ctrl b" "PageUp" "Left" "h" { PageScrollUp; }
|
||||||
|
bind "d" { HalfPageScrollDown; }
|
||||||
|
bind "u" { HalfPageScrollUp; }
|
||||||
|
bind "Alt n" { NewPane; }
|
||||||
|
bind "Alt h" { MoveFocus "Left"; }
|
||||||
|
bind "Alt l" { MoveFocus "Right"; }
|
||||||
|
bind "Alt j" { MoveFocus "Down"; }
|
||||||
|
bind "Alt k" { MoveFocus "Up"; }
|
||||||
|
bind "Alt [" { FocusPreviousPane; }
|
||||||
|
bind "Alt ]" { FocusNextPane; }
|
||||||
|
bind "Alt =" { Resize "Increase"; }
|
||||||
|
bind "Alt +" { Resize "Increase"; }
|
||||||
|
bind "Alt -" { Resize "Decrease"; }
|
||||||
|
}
|
||||||
|
session {
|
||||||
|
bind "Ctrl g" { SwitchToMode "locked"; }
|
||||||
|
bind "Ctrl n" { SwitchToMode "resize"; }
|
||||||
|
bind "Ctrl p" { SwitchToMode "pane"; }
|
||||||
|
bind "Ctrl h" { SwitchToMode "move"; }
|
||||||
|
bind "Ctrl b" { SwitchToMode "tmux"; }
|
||||||
|
bind "Ctrl t" { SwitchToMode "tab"; }
|
||||||
|
bind "Ctrl o" "Enter" "Space" "Esc" { SwitchToMode "normal"; }
|
||||||
|
bind "Ctrl s" { SwitchToMode "scroll"; }
|
||||||
|
bind "Ctrl q" { Quit; }
|
||||||
|
bind "d" { Detach; }
|
||||||
|
bind "Alt n" { NewPane; }
|
||||||
|
bind "Alt h" { MoveFocus "Left"; }
|
||||||
|
bind "Alt l" { MoveFocus "Right"; }
|
||||||
|
bind "Alt j" { MoveFocus "Down"; }
|
||||||
|
bind "Alt k" { MoveFocus "Up"; }
|
||||||
|
bind "Alt [" { FocusPreviousPane; }
|
||||||
|
bind "Alt ]" { FocusNextPane; }
|
||||||
|
bind "Alt =" { Resize "Increase"; }
|
||||||
|
bind "Alt +" { Resize "Increase"; }
|
||||||
|
bind "Alt -" { Resize "Decrease"; }
|
||||||
|
}
|
||||||
|
RenameTab {
|
||||||
|
bind "Enter" "Ctrl c" "Esc" { SwitchToMode "normal"; }
|
||||||
|
bind "Esc" { TabNameInput 27; SwitchToMode "tab"; }
|
||||||
|
bind "Alt n" { NewPane; }
|
||||||
|
bind "Alt h" { MoveFocus "Left"; }
|
||||||
|
bind "Alt l" { MoveFocus "Right"; }
|
||||||
|
bind "Alt j" { MoveFocus "Down"; }
|
||||||
|
bind "Alt k" { MoveFocus "Up"; }
|
||||||
|
bind "Alt [" { FocusPreviousPane; }
|
||||||
|
bind "Alt ]" { FocusNextPane; }
|
||||||
|
bind "Alt =" { Resize "Increase"; }
|
||||||
|
bind "Alt +" { Resize "Increase"; }
|
||||||
|
bind "Alt -" { Resize "Decrease"; }
|
||||||
|
}
|
||||||
|
RenamePane {
|
||||||
|
bind "Enter" "Ctrl c" "Esc" { SwitchToMode "normal"; }
|
||||||
|
bind "Esc" { PaneNameInput 27; SwitchToMode "pane"; }
|
||||||
|
bind "Alt n" { NewPane; }
|
||||||
|
bind "Alt h" { MoveFocus "Left"; }
|
||||||
|
bind "Alt l" { MoveFocus "Right"; }
|
||||||
|
bind "Alt j" { MoveFocus "Down"; }
|
||||||
|
bind "Alt k" { MoveFocus "Up"; }
|
||||||
|
bind "Alt [" { FocusPreviousPane; }
|
||||||
|
bind "Alt ]" { FocusNextPane; }
|
||||||
|
bind "Alt =" { Resize "Increase"; }
|
||||||
|
bind "Alt +" { Resize "Increase"; }
|
||||||
|
bind "Alt -" { Resize "Decrease"; }
|
||||||
|
}
|
||||||
|
tmux {
|
||||||
|
bind "Ctrl g" { SwitchToMode "locked"; }
|
||||||
|
bind "Esc" { EditScrollback; SwitchToMode "normal"; }
|
||||||
|
bind "Ctrl n" { SwitchToMode "resize"; }
|
||||||
|
bind "Ctrl p" { SwitchToMode "pane"; }
|
||||||
|
bind "Ctrl h" { SwitchToMode "move"; }
|
||||||
|
bind "Ctrl t" { SwitchToMode "tab"; }
|
||||||
|
bind "Ctrl o" "Enter" "Space" "Esc" { SwitchToMode "normal"; }
|
||||||
|
bind "Ctrl s" { SwitchToMode "scroll"; }
|
||||||
|
bind "Ctrl q" { Quit; }
|
||||||
|
bind "-" { NewPane "Down"; SwitchToMode "normal"; }
|
||||||
|
bind "|" { NewPane "Right"; SwitchToMode "normal"; }
|
||||||
|
bind "z" { ToggleFocusFullscreen; SwitchToMode "normal"; }
|
||||||
|
bind "c" { NewTab; SwitchToMode "normal"; }
|
||||||
|
bind "," { SwitchToMode "RenameTab"; TabNameInput 0; }
|
||||||
|
bind "Ctrl h" { GoToPreviousTab; SwitchToMode "normal"; }
|
||||||
|
bind "Ctrl l" { GoToNextTab; SwitchToMode "normal"; }
|
||||||
|
bind "h" { MoveFocus "Left"; SwitchToMode "normal"; }
|
||||||
|
bind "l" { MoveFocus "Right"; SwitchToMode "normal"; }
|
||||||
|
bind "j" { MoveFocus "Down"; SwitchToMode "normal"; }
|
||||||
|
bind "k" { MoveFocus "Up"; SwitchToMode "normal"; }
|
||||||
|
bind "Alt n" { NewPane; }
|
||||||
|
bind "Alt h" { MoveFocus "Left"; }
|
||||||
|
bind "Alt l" { MoveFocus "Right"; }
|
||||||
|
bind "Alt j" { MoveFocus "Down"; }
|
||||||
|
bind "Alt k" { MoveFocus "Up"; }
|
||||||
|
bind "Alt [" { FocusPreviousPane; }
|
||||||
|
bind "Alt ]" { FocusNextPane; }
|
||||||
|
bind "Alt =" { Resize "Increase"; }
|
||||||
|
bind "Alt +" { Resize "Increase"; }
|
||||||
|
bind "Alt -" { Resize "Decrease"; }
|
||||||
|
bind "Ctrl a" { Write 1; SwitchToMode "normal"; }
|
||||||
|
bind "d" { Detach; }
|
||||||
|
bind "y" { ToggleActiveSyncTab; SwitchToMode "normal"; }
|
||||||
|
bind "r" { SwitchToMode "RenamePane"; PaneNameInput 0; }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Choose what to do when zellij receives SIGTERM, SIGINT, SIGQUIT or SIGHUP
|
||||||
|
// eg. when terminal window with an active zellij session is closed
|
||||||
|
// Options:
|
||||||
|
// - detach (Default)
|
||||||
|
// - quit
|
||||||
|
//
|
||||||
|
// on_force_close "quit"
|
||||||
|
|
||||||
|
// Send a request for a simplified ui (without arrow fonts) to plugins
|
||||||
|
// Options:
|
||||||
|
// - true
|
||||||
|
// - false (Default)
|
||||||
|
//
|
||||||
|
// simplified_ui true
|
||||||
|
|
||||||
|
// Choose the path to the default shell that zellij will use for opening new panes
|
||||||
|
// Default: $SHELL
|
||||||
|
//
|
||||||
|
// default_shell "fish"
|
||||||
|
|
||||||
|
// Toggle between having pane frames around the panes
|
||||||
|
// Options:
|
||||||
|
// - true (default)
|
||||||
|
// - false
|
||||||
|
//
|
||||||
|
pane_frames false
|
||||||
|
|
||||||
|
// Choose the theme that is specified in the themes section.
|
||||||
|
// Default: default
|
||||||
|
//
|
||||||
|
// theme "default"
|
||||||
|
|
||||||
|
// The name of the default layout to load on startup
|
||||||
|
// Default: "default"
|
||||||
|
//
|
||||||
|
// default_layout "compact"
|
||||||
|
|
||||||
|
// Choose the mode that zellij uses when starting up.
|
||||||
|
// Default: normal
|
||||||
|
//
|
||||||
|
// default_mode "locked"
|
||||||
|
|
||||||
|
// Toggle enabling the mouse mode.
|
||||||
|
// On certain configurations, or terminals this could
|
||||||
|
// potentially interfere with copying text.
|
||||||
|
// Options:
|
||||||
|
// - true (default)
|
||||||
|
// - false
|
||||||
|
//
|
||||||
|
// mouse_mode false
|
||||||
|
|
||||||
|
// Configure the scroll back buffer size
|
||||||
|
// This is the number of lines zellij stores for each pane in the scroll back
|
||||||
|
// buffer. Excess number of lines are discarded in a FIFO fashion.
|
||||||
|
// Valid values: positive integers
|
||||||
|
// Default value: 10000
|
||||||
|
//
|
||||||
|
// scroll_buffer_size 10000
|
||||||
|
|
||||||
|
// Provide a command to execute when copying text. The text will be piped to
|
||||||
|
// the stdin of the program to perform the copy. This can be used with
|
||||||
|
// terminal emulators which do not support the OSC 52 ANSI control sequence
|
||||||
|
// that will be used by default if this option is not set.
|
||||||
|
// Examples:
|
||||||
|
//
|
||||||
|
// copy_command "xclip -selection clipboard" // x11
|
||||||
|
// copy_command "wl-copy" // wayland
|
||||||
|
// copy_command "pbcopy" // osx
|
||||||
|
|
||||||
|
// Choose the destination for copied text
|
||||||
|
// Allows using the primary selection buffer (on x11/wayland) instead of the system clipboard.
|
||||||
|
// Does not apply when using copy_command.
|
||||||
|
// Options:
|
||||||
|
// - system (default)
|
||||||
|
// - primary
|
||||||
|
//
|
||||||
|
// copy_clipboard "primary"
|
||||||
|
|
||||||
|
// Enable or disable automatic copy (and clear) of selection when releasing mouse
|
||||||
|
// Default: true
|
||||||
|
//
|
||||||
|
// copy_on_select false
|
||||||
|
|
||||||
|
// Path to the default editor to use to edit pane scrollbuffer
|
||||||
|
// Default: $EDITOR or $VISUAL
|
||||||
|
//
|
||||||
|
// scrollback_editor "/usr/bin/vim"
|
||||||
|
|
||||||
|
// When attaching to an existing session with other users,
|
||||||
|
// should the session be mirrored (true)
|
||||||
|
// or should each user have their own cursor (false)
|
||||||
|
// Default: false
|
||||||
|
//
|
||||||
|
// mirror_session true
|
||||||
|
|
||||||
|
// The folder in which Zellij will look for layouts
|
||||||
|
//
|
||||||
|
// layout_dir /path/to/my/layout_dir
|
||||||
|
|
||||||
|
// The folder in which Zellij will look for themes
|
||||||
|
//
|
||||||
|
// theme_dir "/path/to/my/theme_dir"
|
||||||
|
|
||||||
|
plugins {
|
||||||
|
tab-bar { path "tab-bar"; }
|
||||||
|
status-bar { path "status-bar"; }
|
||||||
|
strider { path "strider"; }
|
||||||
|
}
|
|
@ -1,572 +0,0 @@
|
||||||
---
|
|
||||||
# Configuration for zellij.
|
|
||||||
|
|
||||||
# In order to troubleshoot your configuration try using the following command:
|
|
||||||
# `zellij setup --check`
|
|
||||||
# It should show current config locations and features that are enabled.
|
|
||||||
|
|
||||||
keybinds:
|
|
||||||
unbind: true
|
|
||||||
normal:
|
|
||||||
- action: [SwitchToMode: Locked,]
|
|
||||||
key: [Ctrl: 'g',]
|
|
||||||
- action: [SwitchToMode: Pane,]
|
|
||||||
key: [Ctrl: 'p',]
|
|
||||||
- action: [SwitchToMode: Resize,]
|
|
||||||
key: [Ctrl: 'n',]
|
|
||||||
- action: [SwitchToMode: Tab,]
|
|
||||||
key: [Ctrl: 't',]
|
|
||||||
- action: [SwitchToMode: Scroll,]
|
|
||||||
key: [Ctrl: 's',]
|
|
||||||
- action: [SwitchToMode: Session,]
|
|
||||||
key: [Ctrl: 'o',]
|
|
||||||
- action: [SwitchToMode: Move,]
|
|
||||||
key: [Ctrl: 'h',]
|
|
||||||
- action: [SwitchToMode: Tmux,]
|
|
||||||
key: [Ctrl: 'a',]
|
|
||||||
- action: [Quit,]
|
|
||||||
key: [Ctrl: 'q',]
|
|
||||||
- action: [NewPane: ]
|
|
||||||
key: [ Alt: 'n',]
|
|
||||||
- action: [MoveFocusOrTab: Left,]
|
|
||||||
key: [ Alt: 'h',]
|
|
||||||
- action: [MoveFocusOrTab: Right,]
|
|
||||||
key: [ Alt: 'l',]
|
|
||||||
- action: [MoveFocus: Down,]
|
|
||||||
key: [ Alt: 'j',]
|
|
||||||
- action: [MoveFocus: Up,]
|
|
||||||
key: [ Alt: 'k',]
|
|
||||||
- action: [FocusPreviousPane,]
|
|
||||||
key: [ Alt: '[',]
|
|
||||||
- action: [FocusNextPane,]
|
|
||||||
key: [ Alt: ']',]
|
|
||||||
- action: [Resize: Increase,]
|
|
||||||
key: [ Alt: '=']
|
|
||||||
- action: [Resize: Increase,]
|
|
||||||
key: [ Alt: '+']
|
|
||||||
- action: [Resize: Decrease,]
|
|
||||||
key: [ Alt: '-']
|
|
||||||
locked:
|
|
||||||
- action: [SwitchToMode: Normal,]
|
|
||||||
key: [Ctrl: 'g',]
|
|
||||||
resize:
|
|
||||||
- action: [SwitchToMode: Locked,]
|
|
||||||
key: [Ctrl: 'g']
|
|
||||||
- action: [SwitchToMode: Pane,]
|
|
||||||
key: [Ctrl: 'p',]
|
|
||||||
- action: [SwitchToMode: Tab,]
|
|
||||||
key: [Ctrl: 't',]
|
|
||||||
- action: [SwitchToMode: Normal,]
|
|
||||||
key: [Ctrl: 'n', Char: "\n", Char: ' ', Esc]
|
|
||||||
- action: [SwitchToMode: Scroll,]
|
|
||||||
key: [Ctrl: 's']
|
|
||||||
- action: [SwitchToMode: Session,]
|
|
||||||
key: [Ctrl: 'o',]
|
|
||||||
- action: [SwitchToMode: Move,]
|
|
||||||
key: [Ctrl: 'h',]
|
|
||||||
- action: [SwitchToMode: Tmux,]
|
|
||||||
key: [Ctrl: 'b',]
|
|
||||||
- action: [Quit]
|
|
||||||
key: [Ctrl: 'q']
|
|
||||||
- action: [Resize: Left,]
|
|
||||||
key: [Char: 'h', Left,]
|
|
||||||
- action: [Resize: Down,]
|
|
||||||
key: [Char: 'j', Down,]
|
|
||||||
- action: [Resize: Up,]
|
|
||||||
key: [Char: 'k', Up, ]
|
|
||||||
- action: [Resize: Right,]
|
|
||||||
key: [Char: 'l', Right,]
|
|
||||||
- action: [Resize: Increase,]
|
|
||||||
key: [Char: '=']
|
|
||||||
- action: [Resize: Increase,]
|
|
||||||
key: [ Char: '+']
|
|
||||||
- action: [Resize: Decrease,]
|
|
||||||
key: [Char: '-']
|
|
||||||
- action: [NewPane: ,]
|
|
||||||
key: [ Alt: 'n',]
|
|
||||||
- action: [MoveFocus: Left,]
|
|
||||||
key: [ Alt: 'h',]
|
|
||||||
- action: [MoveFocus: Right,]
|
|
||||||
key: [ Alt: 'l',]
|
|
||||||
- action: [MoveFocus: Down,]
|
|
||||||
key: [ Alt: 'j',]
|
|
||||||
- action: [MoveFocus: Up,]
|
|
||||||
key: [ Alt: 'k',]
|
|
||||||
- action: [FocusPreviousPane,]
|
|
||||||
key: [ Alt: '[',]
|
|
||||||
- action: [FocusNextPane,]
|
|
||||||
key: [ Alt: ']',]
|
|
||||||
- action: [Resize: Increase,]
|
|
||||||
key: [ Alt: '=']
|
|
||||||
- action: [Resize: Increase,]
|
|
||||||
key: [ Alt: '+']
|
|
||||||
- action: [Resize: Decrease,]
|
|
||||||
key: [ Alt: '-']
|
|
||||||
pane:
|
|
||||||
- action: [SwitchToMode: Locked,]
|
|
||||||
key: [Ctrl: 'g']
|
|
||||||
- action: [SwitchToMode: Resize,]
|
|
||||||
key: [Ctrl: 'n',]
|
|
||||||
- action: [SwitchToMode: Tab,]
|
|
||||||
key: [Ctrl: 't',]
|
|
||||||
- action: [SwitchToMode: Normal,]
|
|
||||||
key: [Ctrl: 'p', Char: "\n", Char: ' ', Esc]
|
|
||||||
- action: [SwitchToMode: Scroll,]
|
|
||||||
key: [Ctrl: 's']
|
|
||||||
- action: [SwitchToMode: Session,]
|
|
||||||
key: [Ctrl: 'o',]
|
|
||||||
- action: [SwitchToMode: Move,]
|
|
||||||
key: [Ctrl: 'h',]
|
|
||||||
- action: [SwitchToMode: Tmux,]
|
|
||||||
key: [Ctrl: 'b',]
|
|
||||||
- action: [Quit,]
|
|
||||||
key: [Ctrl: 'q',]
|
|
||||||
- action: [MoveFocus: Left,]
|
|
||||||
key: [ Char: 'h', Left,]
|
|
||||||
- action: [MoveFocus: Right,]
|
|
||||||
key: [ Char: 'l', Right,]
|
|
||||||
- action: [MoveFocus: Down,]
|
|
||||||
key: [ Char: 'j', Down,]
|
|
||||||
- action: [MoveFocus: Up,]
|
|
||||||
key: [ Char: 'k', Up,]
|
|
||||||
- action: [SwitchFocus,]
|
|
||||||
key: [Char: 'p']
|
|
||||||
- action: [NewPane: , SwitchToMode: Normal,]
|
|
||||||
key: [Char: 'n',]
|
|
||||||
- action: [NewPane: Down, SwitchToMode: Normal,]
|
|
||||||
key: [Char: 'd',]
|
|
||||||
- action: [NewPane: Right, SwitchToMode: Normal,]
|
|
||||||
key: [Char: 'r',]
|
|
||||||
- action: [CloseFocus, SwitchToMode: Normal,]
|
|
||||||
key: [Char: 'x',]
|
|
||||||
- action: [ToggleFocusFullscreen, SwitchToMode: Normal,]
|
|
||||||
key: [Char: 'f',]
|
|
||||||
- action: [TogglePaneFrames, SwitchToMode: Normal,]
|
|
||||||
key: [Char: 'z',]
|
|
||||||
- action: [ToggleFloatingPanes, SwitchToMode: Normal,]
|
|
||||||
key: [Char: 'w']
|
|
||||||
- action: [TogglePaneEmbedOrFloating, SwitchToMode: Normal,]
|
|
||||||
key: [Char: 'e']
|
|
||||||
- action: [NewPane: ,]
|
|
||||||
key: [ Alt: 'n',]
|
|
||||||
- action: [MoveFocus: Left,]
|
|
||||||
key: [ Alt: 'h',]
|
|
||||||
- action: [MoveFocus: Right,]
|
|
||||||
key: [ Alt: 'l',]
|
|
||||||
- action: [MoveFocus: Down,]
|
|
||||||
key: [ Alt: 'j',]
|
|
||||||
- action: [MoveFocus: Up,]
|
|
||||||
key: [ Alt: 'k',]
|
|
||||||
- action: [FocusPreviousPane,]
|
|
||||||
key: [ Alt: '[',]
|
|
||||||
- action: [FocusNextPane,]
|
|
||||||
key: [ Alt: ']',]
|
|
||||||
- action: [Resize: Increase,]
|
|
||||||
key: [ Alt: '=']
|
|
||||||
- action: [Resize: Increase,]
|
|
||||||
key: [ Alt: '+']
|
|
||||||
- action: [Resize: Decrease,]
|
|
||||||
key: [ Alt: '-']
|
|
||||||
- action: [SwitchToMode: RenamePane, PaneNameInput: [0],]
|
|
||||||
key: [Char: 'c']
|
|
||||||
move:
|
|
||||||
- action: [SwitchToMode: Locked,]
|
|
||||||
key: [Ctrl: 'g']
|
|
||||||
- action: [SwitchToMode: Pane,]
|
|
||||||
key: [Ctrl: 'p',]
|
|
||||||
- action: [SwitchToMode: Tab,]
|
|
||||||
key: [Ctrl: 't',]
|
|
||||||
- action: [SwitchToMode: Resize,]
|
|
||||||
key: [Ctrl: 'n',]
|
|
||||||
- action: [SwitchToMode: Normal,]
|
|
||||||
key: [Ctrl: 'h', Char: "\n", Char: ' ', Esc]
|
|
||||||
- action: [SwitchToMode: Scroll,]
|
|
||||||
key: [Ctrl: 's']
|
|
||||||
- action: [SwitchToMode: Session,]
|
|
||||||
key: [Ctrl: 'o',]
|
|
||||||
- action: [Quit]
|
|
||||||
key: [Ctrl: 'q']
|
|
||||||
- action: [MovePane: ,]
|
|
||||||
key: [Char: 'n', Char: "\t",]
|
|
||||||
- action: [MovePane: Left,]
|
|
||||||
key: [Char: 'h', Left,]
|
|
||||||
- action: [MovePane: Down,]
|
|
||||||
key: [Char: 'j', Down,]
|
|
||||||
- action: [MovePane: Up,]
|
|
||||||
key: [Char: 'k', Up, ]
|
|
||||||
- action: [MovePane: Right,]
|
|
||||||
key: [Char: 'l', Right,]
|
|
||||||
- action: [NewPane: ,]
|
|
||||||
key: [ Alt: 'n',]
|
|
||||||
- action: [MoveFocus: Left,]
|
|
||||||
key: [ Alt: 'h',]
|
|
||||||
- action: [MoveFocus: Right,]
|
|
||||||
key: [ Alt: 'l',]
|
|
||||||
- action: [MoveFocus: Down,]
|
|
||||||
key: [ Alt: 'j',]
|
|
||||||
- action: [MoveFocus: Up,]
|
|
||||||
key: [ Alt: 'k',]
|
|
||||||
- action: [FocusPreviousPane,]
|
|
||||||
key: [ Alt: '[',]
|
|
||||||
- action: [FocusNextPane,]
|
|
||||||
key: [ Alt: ']',]
|
|
||||||
- action: [Resize: Increase,]
|
|
||||||
key: [ Alt: '=']
|
|
||||||
- action: [Resize: Increase,]
|
|
||||||
key: [ Alt: '+']
|
|
||||||
- action: [Resize: Decrease,]
|
|
||||||
key: [ Alt: '-']
|
|
||||||
tab:
|
|
||||||
- action: [SwitchToMode: Locked,]
|
|
||||||
key: [Ctrl: 'g']
|
|
||||||
- action: [SwitchToMode: Pane,]
|
|
||||||
key: [Ctrl: 'p',]
|
|
||||||
- action: [SwitchToMode: Resize,]
|
|
||||||
key: [Ctrl: 'n',]
|
|
||||||
- action: [SwitchToMode: Normal,]
|
|
||||||
key: [Ctrl: 't', Char: "\n", Char: ' ', Esc]
|
|
||||||
- action: [SwitchToMode: Scroll,]
|
|
||||||
key: [Ctrl: 's']
|
|
||||||
- action: [SwitchToMode: Move,]
|
|
||||||
key: [Ctrl: 'h',]
|
|
||||||
- action: [SwitchToMode: Tmux,]
|
|
||||||
key: [Ctrl: 'b',]
|
|
||||||
- action: [SwitchToMode: Session,]
|
|
||||||
key: [Ctrl: 'o',]
|
|
||||||
- action: [SwitchToMode: RenameTab, TabNameInput: [0],]
|
|
||||||
key: [Char: 'r']
|
|
||||||
- action: [Quit,]
|
|
||||||
key: [Ctrl: 'q',]
|
|
||||||
- action: [GoToPreviousTab,]
|
|
||||||
key: [ Char: 'h', Left, Up, Char: 'k',]
|
|
||||||
- action: [GoToNextTab,]
|
|
||||||
key: [ Char: 'l', Right,Down, Char: 'j']
|
|
||||||
- action: [NewTab: , SwitchToMode: Normal,]
|
|
||||||
key: [ Char: 'n',]
|
|
||||||
- action: [CloseTab, SwitchToMode: Normal,]
|
|
||||||
key: [ Char: 'x',]
|
|
||||||
- action: [ToggleActiveSyncTab, SwitchToMode: Normal,]
|
|
||||||
key: [Char: 's']
|
|
||||||
- action: [GoToTab: 1, SwitchToMode: Normal,]
|
|
||||||
key: [ Char: '1',]
|
|
||||||
- action: [GoToTab: 2, SwitchToMode: Normal,]
|
|
||||||
key: [ Char: '2',]
|
|
||||||
- action: [GoToTab: 3, SwitchToMode: Normal,]
|
|
||||||
key: [ Char: '3',]
|
|
||||||
- action: [GoToTab: 4, SwitchToMode: Normal,]
|
|
||||||
key: [ Char: '4',]
|
|
||||||
- action: [GoToTab: 5, SwitchToMode: Normal,]
|
|
||||||
key: [ Char: '5',]
|
|
||||||
- action: [GoToTab: 6, SwitchToMode: Normal,]
|
|
||||||
key: [ Char: '6',]
|
|
||||||
- action: [GoToTab: 7, SwitchToMode: Normal,]
|
|
||||||
key: [ Char: '7',]
|
|
||||||
- action: [GoToTab: 8, SwitchToMode: Normal,]
|
|
||||||
key: [ Char: '8',]
|
|
||||||
- action: [GoToTab: 9, SwitchToMode: Normal,]
|
|
||||||
key: [ Char: '9',]
|
|
||||||
- action: [ToggleTab]
|
|
||||||
key: [ Char: "\t" ]
|
|
||||||
- action: [NewPane: ,]
|
|
||||||
key: [ Alt: 'n',]
|
|
||||||
- action: [MoveFocus: Left,]
|
|
||||||
key: [ Alt: 'h',]
|
|
||||||
- action: [MoveFocus: Right,]
|
|
||||||
key: [ Alt: 'l',]
|
|
||||||
- action: [MoveFocus: Down,]
|
|
||||||
key: [ Alt: 'j',]
|
|
||||||
- action: [MoveFocus: Up,]
|
|
||||||
key: [ Alt: 'k',]
|
|
||||||
- action: [FocusPreviousPane,]
|
|
||||||
key: [ Alt: '[',]
|
|
||||||
- action: [FocusNextPane,]
|
|
||||||
key: [ Alt: ']',]
|
|
||||||
- action: [Resize: Increase,]
|
|
||||||
key: [ Alt: '=']
|
|
||||||
- action: [Resize: Increase,]
|
|
||||||
key: [ Alt: '+']
|
|
||||||
- action: [Resize: Decrease,]
|
|
||||||
key: [ Alt: '-']
|
|
||||||
scroll:
|
|
||||||
- action: [SwitchToMode: Normal,]
|
|
||||||
key: [Ctrl: 's', Char: ' ', Char: "\n", Esc]
|
|
||||||
- action: [SwitchToMode: Tab,]
|
|
||||||
key: [Ctrl: 't',]
|
|
||||||
- action: [SwitchToMode: Locked,]
|
|
||||||
key: [Ctrl: 'g',]
|
|
||||||
- action: [SwitchToMode: Pane,]
|
|
||||||
key: [Ctrl: 'p',]
|
|
||||||
- action: [SwitchToMode: Move,]
|
|
||||||
key: [Ctrl: 'h',]
|
|
||||||
- action: [SwitchToMode: Tmux,]
|
|
||||||
key: [Ctrl: 'b',]
|
|
||||||
- action: [SwitchToMode: Session,]
|
|
||||||
key: [Ctrl: 'o',]
|
|
||||||
- action: [SwitchToMode: Resize,]
|
|
||||||
key: [Ctrl: 'n',]
|
|
||||||
- action: [ScrollToBottom, SwitchToMode: Normal,]
|
|
||||||
key: [Ctrl: 'c',]
|
|
||||||
- action: [Quit,]
|
|
||||||
key: [Ctrl: 'q',]
|
|
||||||
- action: [ScrollDown,]
|
|
||||||
key: [Char: 'j', Down,]
|
|
||||||
- action: [ScrollUp,]
|
|
||||||
key: [Char: 'k', Up,]
|
|
||||||
- action: [PageScrollDown,]
|
|
||||||
key: [Ctrl: 'f', PageDown, Right, Char: 'l',]
|
|
||||||
- action: [PageScrollUp,]
|
|
||||||
key: [Ctrl: 'b', PageUp, Left, Char: 'h',]
|
|
||||||
- action: [HalfPageScrollDown,]
|
|
||||||
key: [Char: 'd',]
|
|
||||||
- action: [HalfPageScrollUp,]
|
|
||||||
key: [Char: 'u',]
|
|
||||||
- action: [NewPane: ,]
|
|
||||||
key: [ Alt: 'n',]
|
|
||||||
- action: [MoveFocus: Left,]
|
|
||||||
key: [ Alt: 'h',]
|
|
||||||
- action: [MoveFocus: Right,]
|
|
||||||
key: [ Alt: 'l',]
|
|
||||||
- action: [MoveFocus: Down,]
|
|
||||||
key: [ Alt: 'j',]
|
|
||||||
- action: [MoveFocus: Up,]
|
|
||||||
key: [ Alt: 'k',]
|
|
||||||
- action: [FocusPreviousPane,]
|
|
||||||
key: [ Alt: '[',]
|
|
||||||
- action: [FocusNextPane,]
|
|
||||||
key: [ Alt: ']',]
|
|
||||||
- action: [Resize: Increase,]
|
|
||||||
key: [ Alt: '=']
|
|
||||||
- action: [Resize: Increase,]
|
|
||||||
key: [ Alt: '+']
|
|
||||||
- action: [Resize: Decrease,]
|
|
||||||
key: [ Alt: '-']
|
|
||||||
renametab:
|
|
||||||
- action: [SwitchToMode: Normal,]
|
|
||||||
key: [Char: "\n", Ctrl: 'c', Esc]
|
|
||||||
- action: [TabNameInput: [27] , SwitchToMode: Tab,]
|
|
||||||
key: [Esc,]
|
|
||||||
- action: [NewPane: ,]
|
|
||||||
key: [ Alt: 'n',]
|
|
||||||
- action: [MoveFocus: Left,]
|
|
||||||
key: [ Alt: 'h',]
|
|
||||||
- action: [MoveFocus: Right,]
|
|
||||||
key: [ Alt: 'l',]
|
|
||||||
- action: [MoveFocus: Down,]
|
|
||||||
key: [ Alt: 'j',]
|
|
||||||
- action: [MoveFocus: Up,]
|
|
||||||
key: [ Alt: 'k',]
|
|
||||||
- action: [FocusPreviousPane,]
|
|
||||||
key: [ Alt: '[',]
|
|
||||||
- action: [FocusNextPane,]
|
|
||||||
key: [ Alt: ']',]
|
|
||||||
- action: [Resize: Increase,]
|
|
||||||
key: [ Alt: '=']
|
|
||||||
- action: [Resize: Increase,]
|
|
||||||
key: [ Alt: '+']
|
|
||||||
- action: [Resize: Decrease,]
|
|
||||||
key: [ Alt: '-']
|
|
||||||
renamepane:
|
|
||||||
- action: [SwitchToMode: Normal,]
|
|
||||||
key: [Char: "\n", Ctrl: 'c', Esc]
|
|
||||||
- action: [PaneNameInput: [27] , SwitchToMode: Pane,]
|
|
||||||
key: [Esc,]
|
|
||||||
- action: [NewPane: ,]
|
|
||||||
key: [ Alt: 'n',]
|
|
||||||
- action: [MoveFocus: Left,]
|
|
||||||
key: [ Alt: 'h',]
|
|
||||||
- action: [MoveFocus: Right,]
|
|
||||||
key: [ Alt: 'l',]
|
|
||||||
- action: [MoveFocus: Down,]
|
|
||||||
key: [ Alt: 'j',]
|
|
||||||
- action: [MoveFocus: Up,]
|
|
||||||
key: [ Alt: 'k',]
|
|
||||||
- action: [FocusPreviousPane,]
|
|
||||||
key: [ Alt: '[',]
|
|
||||||
- action: [FocusNextPane,]
|
|
||||||
key: [ Alt: ']',]
|
|
||||||
- action: [Resize: Increase,]
|
|
||||||
key: [ Alt: '=']
|
|
||||||
- action: [Resize: Increase,]
|
|
||||||
key: [ Alt: '+']
|
|
||||||
- action: [Resize: Decrease,]
|
|
||||||
key: [ Alt: '-']
|
|
||||||
session:
|
|
||||||
- action: [SwitchToMode: Locked,]
|
|
||||||
key: [Ctrl: 'g']
|
|
||||||
- action: [SwitchToMode: Resize,]
|
|
||||||
key: [Ctrl: 'n',]
|
|
||||||
- action: [SwitchToMode: Pane,]
|
|
||||||
key: [Ctrl: 'p',]
|
|
||||||
- action: [SwitchToMode: Move,]
|
|
||||||
key: [Ctrl: 'h',]
|
|
||||||
- action: [SwitchToMode: Tmux,]
|
|
||||||
key: [Ctrl: 'b',]
|
|
||||||
- action: [SwitchToMode: Tab,]
|
|
||||||
key: [Ctrl: 't',]
|
|
||||||
- action: [SwitchToMode: Normal,]
|
|
||||||
key: [Ctrl: 'o', Char: "\n", Char: ' ', Esc]
|
|
||||||
- action: [SwitchToMode: Scroll,]
|
|
||||||
key: [Ctrl: 's']
|
|
||||||
- action: [Quit,]
|
|
||||||
key: [Ctrl: 'q',]
|
|
||||||
- action: [Detach,]
|
|
||||||
key: [Char: 'd',]
|
|
||||||
- action: [NewPane: ,]
|
|
||||||
key: [ Alt: 'n',]
|
|
||||||
- action: [MoveFocus: Left,]
|
|
||||||
key: [ Alt: 'h',]
|
|
||||||
- action: [MoveFocus: Right,]
|
|
||||||
key: [ Alt: 'l',]
|
|
||||||
- action: [MoveFocus: Down,]
|
|
||||||
key: [ Alt: 'j',]
|
|
||||||
- action: [MoveFocus: Up,]
|
|
||||||
key: [ Alt: 'k',]
|
|
||||||
- action: [FocusPreviousPane,]
|
|
||||||
key: [ Alt: '[',]
|
|
||||||
- action: [FocusNextPane,]
|
|
||||||
key: [ Alt: ']',]
|
|
||||||
- action: [Resize: Increase,]
|
|
||||||
key: [ Alt: '=']
|
|
||||||
- action: [Resize: Increase,]
|
|
||||||
key: [ Alt: '+']
|
|
||||||
- action: [Resize: Decrease,]
|
|
||||||
key: [ Alt: '-']
|
|
||||||
tmux:
|
|
||||||
- action: [SwitchToMode: Locked,]
|
|
||||||
key: [Ctrl: 'g']
|
|
||||||
- action: [EditScrollback, SwitchToMode: Normal]
|
|
||||||
key: [ Esc ]
|
|
||||||
- action: [SwitchToMode: Resize,]
|
|
||||||
key: [Ctrl: 'n',]
|
|
||||||
- action: [SwitchToMode: Pane,]
|
|
||||||
key: [Ctrl: 'p',]
|
|
||||||
- action: [SwitchToMode: Move,]
|
|
||||||
key: [Ctrl: 'h',]
|
|
||||||
- action: [SwitchToMode: Tab,]
|
|
||||||
key: [Ctrl: 't',]
|
|
||||||
- action: [SwitchToMode: Normal,]
|
|
||||||
key: [Ctrl: 'o', Char: "\n", Char: ' ', Esc]
|
|
||||||
- action: [SwitchToMode: Scroll,]
|
|
||||||
key: [Ctrl: 's']
|
|
||||||
- action: [Quit,]
|
|
||||||
key: [Ctrl: 'q',]
|
|
||||||
- action: [NewPane: Down, SwitchToMode: Normal,]
|
|
||||||
key: [Char: "-",]
|
|
||||||
- action: [NewPane: Right, SwitchToMode: Normal,]
|
|
||||||
key: [Char: '|',]
|
|
||||||
- action: [ToggleFocusFullscreen, SwitchToMode: Normal,]
|
|
||||||
key: [Char: 'z',]
|
|
||||||
- action: [NewTab: , SwitchToMode: Normal,]
|
|
||||||
key: [ Char: 'c',]
|
|
||||||
- action: [SwitchToMode: RenameTab, TabNameInput: [0],]
|
|
||||||
key: [Char: ',']
|
|
||||||
- action: [GoToPreviousTab, SwitchToMode: Normal,]
|
|
||||||
key: [ Ctrl: 'h']
|
|
||||||
- action: [GoToNextTab, SwitchToMode: Normal,]
|
|
||||||
key: [ Ctrl: 'l']
|
|
||||||
- action: [MoveFocus: Left, SwitchToMode: Normal,]
|
|
||||||
key: [ Char: 'h',]
|
|
||||||
- action: [MoveFocus: Right, SwitchToMode: Normal,]
|
|
||||||
key: [ Char: 'l',]
|
|
||||||
- action: [MoveFocus: Down, SwitchToMode: Normal,]
|
|
||||||
key: [ Char: 'j',]
|
|
||||||
- action: [MoveFocus: Up, SwitchToMode: Normal,]
|
|
||||||
key: [ Char: 'k',]
|
|
||||||
- action: [NewPane: ,]
|
|
||||||
key: [ Alt: 'n',]
|
|
||||||
- action: [MoveFocus: Left,]
|
|
||||||
key: [ Alt: 'h',]
|
|
||||||
- action: [MoveFocus: Right,]
|
|
||||||
key: [ Alt: 'l',]
|
|
||||||
- action: [MoveFocus: Down,]
|
|
||||||
key: [ Alt: 'j',]
|
|
||||||
- action: [MoveFocus: Up,]
|
|
||||||
key: [ Alt: 'k',]
|
|
||||||
- action: [FocusPreviousPane,]
|
|
||||||
key: [ Alt: '[',]
|
|
||||||
- action: [FocusNextPane,]
|
|
||||||
key: [ Alt: ']',]
|
|
||||||
- action: [Resize: Increase,]
|
|
||||||
key: [ Alt: '=']
|
|
||||||
- action: [Resize: Increase,]
|
|
||||||
key: [ Alt: '+']
|
|
||||||
- action: [Resize: Decrease,]
|
|
||||||
key: [ Alt: '-']
|
|
||||||
- action: [Write: [1,], SwitchToMode: Normal]
|
|
||||||
key: [ Ctrl: 'a' ]
|
|
||||||
- action: [Detach,]
|
|
||||||
key: [ Char: 'd', ]
|
|
||||||
- action: [ToggleActiveSyncTab, SwitchToMode: Normal ]
|
|
||||||
key: [ Char: 'y', ]
|
|
||||||
- action: [SwitchToMode: RenamePane, PaneNameInput: [0],]
|
|
||||||
key: [Char: 'r']
|
|
||||||
plugins:
|
|
||||||
- path: tab-bar
|
|
||||||
tag: tab-bar
|
|
||||||
- path: status-bar
|
|
||||||
tag: status-bar
|
|
||||||
- path: strider
|
|
||||||
tag: strider
|
|
||||||
|
|
||||||
# Choose what to do when zellij receives SIGTERM, SIGINT, SIGQUIT or SIGHUP
|
|
||||||
# eg. when terminal window with an active zellij session is closed
|
|
||||||
# Options:
|
|
||||||
# - detach (Default)
|
|
||||||
# - quit
|
|
||||||
#on_force_close: quit
|
|
||||||
|
|
||||||
# Send a request for a simplified ui (without arrow fonts) to plugins
|
|
||||||
# Options:
|
|
||||||
# - true
|
|
||||||
# - false (Default)
|
|
||||||
#simplified_ui: true
|
|
||||||
|
|
||||||
# Choose the path to the default shell that zellij will use for opening new panes
|
|
||||||
# Default: $SHELL
|
|
||||||
# default_shell: fish
|
|
||||||
|
|
||||||
# Toggle between having pane frames around the panes
|
|
||||||
# Options:
|
|
||||||
# - true (default)
|
|
||||||
# - false
|
|
||||||
pane_frames: false
|
|
||||||
|
|
||||||
# Choose the theme that is specified in the themes section.
|
|
||||||
# Default: default
|
|
||||||
#theme: default
|
|
||||||
|
|
||||||
# Choose the mode that zellij uses when starting up.
|
|
||||||
# Default: normal
|
|
||||||
#default_mode: locked
|
|
||||||
|
|
||||||
# Toggle enabling the mouse mode.
|
|
||||||
# On certain configurations, or terminals this could
|
|
||||||
# potentially interfere with copying text.
|
|
||||||
# Options:
|
|
||||||
# - true (default)
|
|
||||||
# - false
|
|
||||||
#mouse_mode: false
|
|
||||||
|
|
||||||
# Configure the scroll back buffer size
|
|
||||||
# This is the number of lines zellij stores for each pane in the scroll back
|
|
||||||
# buffer. Excess number of lines are discarded in a FIFO fashion.
|
|
||||||
# Valid values: positive integers
|
|
||||||
# Default value: 10000
|
|
||||||
#scroll_buffer_size: 10000
|
|
||||||
|
|
||||||
# Provide a command to execute when copying text. The text will be piped to
|
|
||||||
# the stdin of the program to perform the copy. This can be used with
|
|
||||||
# terminal emulators which do not support the OSC 52 ANSI control sequence
|
|
||||||
# that will be used by default if this option is not set.
|
|
||||||
# Examples:
|
|
||||||
#copy_command: "xclip -selection clipboard" # x11
|
|
||||||
#copy_command: "wl-copy" # wayland
|
|
||||||
#copy_command: "pbcopy" # osx
|
|
||||||
|
|
||||||
# Choose the destination for copied text
|
|
||||||
# Allows using the primary selection buffer (on x11/wayland) instead of the system clipboard.
|
|
||||||
# Does not apply when using copy_command.
|
|
||||||
# Options:
|
|
||||||
# - system (default)
|
|
||||||
# - primary
|
|
||||||
# copy_clipboard: primary
|
|
Loading…
Add table
Reference in a new issue