Skip to content

Instantly share code, notes, and snippets.

@humus
Created September 2, 2017 23:23
Show Gist options
  • Save humus/301f47f144caf2493ccdbc982d314d86 to your computer and use it in GitHub Desktop.
Save humus/301f47f144caf2493ccdbc982d314d86 to your computer and use it in GitHub Desktop.
Configuración inicial de tmux
unbind C-b
set-option -g prefix C-a
bind-key C-a send-prefix
bind h select-pane -L
bind j select-pane -D
bind k select-pane -U
bind l select-pane -R
set-window-option -g automatic-rename on
setw -g mode-keys vi
unbind-key -T copy-mode-vi Space
unbind-key -T copy-mode-vi Enter
unbind-key -T copy-mode-vi C-v
bind-key -T copy-mode-vi v send-keys -X begin-selection
bind-key -T copy-mode-vi y send-keys -X copy-selection-and-cancel
bind-key -T copy-mode-vi C-v send-keys -X rectangle-toggle
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment