Browse Source

tmux: add initial .tmux.conf

Signed-off-by: Alejandro Mery <amery@geeks.cl>
master
Alejandro Mery 10 years ago
parent
commit
aadbc4240c
1 changed files with 20 additions and 0 deletions
  1. +20
    -0
      files/.tmux.conf

+ 20
- 0
files/.tmux.conf

@ -0,0 +1,20 @@
# same prefix as `screen`
set -g prefix C-a
unbind C-b
# 0-indexed is not keyboard friendly
set -g base-index 1
set -g pane-base-index 1
# misc features
set -s escape-time 1
setw -g mode-mouse on
# reload
bind r source-file ~/.tmux.conf \; display "Reloaded!"
# send C-a
bind C-a send-prefix
# panes
bind | split-window -h
bind - split-window -v

Loading…
Cancel
Save