23 lines
457 B
Plaintext
23 lines
457 B
Plaintext
# Setting prefix to C-a
|
|
set -g prefix C-a
|
|
bind C-a send-prefix
|
|
bind-key a send-prefix
|
|
unbind-key C-o
|
|
|
|
# Setting escape delay to 0 (for vim)
|
|
set -s escape-time 0
|
|
|
|
# Setting window indexing to start from 1
|
|
set -g base-index 1
|
|
setw -g pane-base-index 1
|
|
|
|
set -g default-terminal "screen-256color"
|
|
|
|
setw -g automatic-rename on
|
|
set -g set-titles on
|
|
|
|
bind-key - split-window -v
|
|
bind-key \\ split-window -h
|
|
|
|
bind-key o command-prompt -p index "select-pane -t '%%'"
|