aboutsummaryrefslogtreecommitdiff
path: root/dot_tmux.conf
blob: 90a88ace6d82558dcabcf7cde59922d3f286834a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
setw -g automatic-rename
set-option -g prefix C-t

# screen like settings
bind C-n next-window
bind C-p previous-window
bind C-d detach
bind C-k confirm kill-window
bind k confirm kill-window
bind K confirm kill-server
bind C-K confirm kill-server
bind t send-prefix
bind C-t send-prefix
bind-key R respawn-pane

# Enable the mouse
set -g mouse on

set -g set-titles on
set -g base-index 0

# Set window titles
set-option -g set-titles on
# [session:window-name host] command
set-option -g set-titles-string '[#S:#I #H] #W'

# Resize when possible
setw -g aggressive-resize on

# emacs key bindings
set -g mode-keys emacs
set -g status-keys emacs

set -g renumber-windows on

# active window colour in status
# set -g window-status-current-bg white
# set -g window-status-current-fg magenta
# set -g window-status-bell-bg red
# set -g window-status-bell-fg yellow

# Powerline:
set-option -g status on
set-option -g status-interval 2
set-option -g status-justify "centre"
set-option -g status-left-length 100
set-option -g status-right-length 100
set-option -g status-bg colour235
set-option -g status-fg colour254
set-window-option -g status-left "[#S]"
set-window-option -g window-status-current-format "#[fg=colour255, bg=colour27] #I ❯ #W #[fg=colour27, bg=colour235]"
set-window-option -g status-right "\"#H\" %H:%M %d-%b"

# Use 256 colours
set -g default-terminal "screen-256color"

# move tmux copy buffer into x clipboard
bind C-y save-buffer ~/.tmux-buffer \; run "wl-copy <~/.tmux-buffer && rm ~/.tmux-buffer"
#Copy CLIPBOARD to tmux paste buffer and paste tmux paste buffer
bind C-v run "tmux set-buffer -- \"$(xsel -o -b)\"; tmux paste-buffer"

bind C new-session

# pane movement
bind-key j command-prompt -p "join pane from:"  "join-pane -s '%%'"
bind-key s command-prompt -p "send pane to:"  "join-pane -t '%%'"