Skip to content

Instantly share code, notes, and snippets.

@imroca
Created January 10, 2024 18:55
Show Gist options
  • Save imroca/126434c7baf591a5c8515df99c7597f3 to your computer and use it in GitHub Desktop.
Save imroca/126434c7baf591a5c8515df99c7597f3 to your computer and use it in GitHub Desktop.
Minimal Tmux Config
set -g default-terminal "screen-256color"
setw -g xterm-keys on
set -s escape-time 10
set -sg repeat-time 600
set -s focus-events on
set -g prefix2 C-a
bind C-a send-prefix -2
set -q -g status-utf8 on
setw -q -g utf8 on
set -g history-limit 5000
set -g base-index 1
setw -g pane-base-index 1
setw -g automatic-rename on
set -g renumber-windows on
set -g set-titles on
set -g display-panes-time 800
set -g display-time 1000
set -g status-interval 10
set -g monitor-activity on
set -g visual-activity off
bind -r h select-pane -L # move left
bind -r j select-pane -D # move down
bind -r k select-pane -U # move up
bind -r l select-pane -R # move right
# split current window horizontally
bind - split-window -v
# split current window vertically
bind _ split-window -h
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment