-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.tmux.conf
57 lines (44 loc) · 1.03 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
47
48
49
50
51
52
53
54
55
56
# prefix
unbind C-b
set -g prefix C-space
bind C-space last
# detach like screen
unbind C-d
bind C-d detach
# split windows like vim
# vim's definition of a horizontal/vertical split is reversed from tmux's
bind s split-window -v
bind v split-window -h
# move around panes with hjkl, as one would in vim after pressing ctrl-w
bind -r h select-pane -L
bind -r j select-pane -D
bind -r k select-pane -U
bind -r l select-pane -R
# vi-style controls
#set -g status-keys vi
setw -g mode-keys vi
# quit q
unbind q
bind q kill-server
# kill K k
unbind K
bind K kill-window
unbind C-k
bind C-k kill-window
set -g status-justify centre
set -g status-left ""
set -g status-left-length 0
set -g default-terminal "screen-256color"
#set -g visual-bell on
setw -g window-status-current-attr bold
set -g status-bg black
set -g status-fg default
set -g pane-border-fg black
#set -g pane-border-bg black
set -g pane-active-border-fg default
#set -g pane-active-border-fg blue
#set -g pane-active-border-bg blue
set -g base-index 1
# default session
new
#last