Skip to content

Instantly share code, notes, and snippets.

@chungg
Created May 3, 2021 19:19
Show Gist options
  • Save chungg/5bc61f3b0eeaea511b03824cf2d01293 to your computer and use it in GitHub Desktop.
Save chungg/5bc61f3b0eeaea511b03824cf2d01293 to your computer and use it in GitHub Desktop.
tmux configuration
set-window-option -g mode-keys vi
# remap prefix from 'C-b' to 'C-a'
unbind C-b
set-option -g prefix C-a
bind-key C-a send-prefix
# split panes using | and -
bind | split-window -h
bind - split-window -v
unbind '"'
unbind %
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment