blob: b6111c86fa93e094bd00f761480644a488c72cac (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
# Configuration for Tmux:
# Set ctrl-space to prefix
unbind C-Space
set -g prefix C-Space
bind C-Space send-prefix
# Moves window position forward after
# deleting a window before it
set -g renumber-windows on
# Move pane to right or left
bind -r "<" swap-window -d -t -1
bind -r ">" swap-window -d -t +1
# Horizontal and Vertical pane split
bind - split-window -vc "#{pane_current_path}"
bind | split-window -hc "#{pane_current_path}"
# move between windows quickly
bind -r "k" select-pane -U
bind -r "j" select-pane -D
bind -r "h" select-pane -L
bind -r "l" select-pane -R
|