Skip to content

Instantly share code, notes, and snippets.

@0x3n0
Created May 30, 2023 02:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save 0x3n0/f2e2bff54651ca2c2a0cd439041bbf8f to your computer and use it in GitHub Desktop.
Save 0x3n0/f2e2bff54651ca2c2a0cd439041bbf8f to your computer and use it in GitHub Desktop.
set -g mouse on

# unbind default prefix and set it to ctrl-a
unbind C-b
set -g prefix C-a
bind C-a send-prefix

# make delay shorter
set -sg escape-time 0

#### key bindings ####

# reload config file
bind r source-file ~/.tmux.conf \; display ".tmux.conf reloaded!"

# quickly open a new window
bind N new-window

# synchronize all panes in a window
# bind y setw synchronize-panes

# pane movement shortcuts (same as vim)
bind h select-pane -L
bind j select-pane -D
bind k select-pane -U
bind l select-pane -R

#### copy mode : vim ####

# set vi mode for copy mode
setw -g mode-keys vi

# copy mode using 'Esc'
unbind [
bind Escape copy-mode

# paste using 'p'
unbind p
bind p paste-buffer
set -g status off
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment