-
Notifications
You must be signed in to change notification settings - Fork 0
/
tmux.conf
46 lines (37 loc) · 1.38 KB
/
tmux.conf
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
unbind-key -n F8
unbind-key -n C-a
set -g prefix ^X
set -g prefix2 ^X
bind a send-prefix
set -g status-keys vi
set -g mode-keys vi
# select pane like vi
bind k select-pane -U
bind j select-pane -D
bind h select-pane -L
bind l select-pane -R
# previou and next windows
bind-key -n ^k select-window -n
bind-key -n ^s select-window -p
# last window
bind-key -n ^g select-window -l
# copy mode
bind Escape copy-mode
bind p pasteb
#bind -t vi-copy v begin-selection
#bind -t vi-copy y copy-selection
bind r source-file ~/.tmux.conf \; display "tmux.conf Reloaded!"
#source-file "${HOME}/.powerline/double/blue.tmuxtheme"
#source-file "${HOME}/.powerline/double/cyan.tmuxtheme"
#source-file "${HOME}/.powerline/double/green.tmuxtheme"
#source-file "${HOME}/.powerline/double/red.tmuxtheme"
#source-file "${HOME}/.powerline/double/magenta.tmuxtheme"
#source-file "${HOME}/.powerline/double/orange.tmuxtheme"
#source-file "${HOME}/.powerline/double/yellow.tmuxtheme"
#source-file "${HOME}/.powerline/double/blue_light.tmuxtheme"
#source-file "${HOME}/.powerline/double/cyan_light.tmuxtheme"
source-file "${HOME}/.powerline/double/green_light.tmuxtheme"
#source-file "${HOME}/.powerline/double/red_light.tmuxtheme"
#source-file "${HOME}/.powerline/double/magenta_light.tmuxtheme"
#source-file "${HOME}/.powerline/double/orange_light.tmuxtheme"
#source-file "${HOME}/.powerline/double/yellow_light.tmuxtheme"