forked from Lykathia/.dotfiles
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tmux.conf
66 lines (57 loc) · 2.06 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
57
58
59
60
61
62
63
64
65
66
#--------------------------------------------------------------------
# General Config
#--------------------------------------------------------------------
set -g base-index 1
set -g mode-keys vi
set -g status-keys vi
set -g prefix C-a
#--------------------------------------------------------------------
# Keybinds (todo: colemak)
#--------------------------------------------------------------------
unbind C-b
unbind c
unbind %
unbind '"'
bind-key C-a last-window
bind-key : command-prompt
bind-key Enter new-window
bind-key c split-window -v
bind-key C split-window -h
bind-key h select-pane -L
bind-key j select-pane -D
bind-key k select-pane -U
bind-key l select-pane -R
bind-key C-h resize-pane -L 1
bind-key C-j resize-pane -D 1
bind-key C-k resize-pane -U 1
bind-key C-l resize-pane -R 1
#--------------------------------------------------------------------
# Apperance
#--------------------------------------------------------------------
set -g status-bg default
set -g status-fg cyan
set -g status-interval 4
set -g status-justify centre
set -g status-left '#[fg=white,bold]#S#[fg=cyan] | #[fg=white,bold]#(echo $USER) '
set -g status-right '#[fg=white]#H#[fg=cyan] | #[fg=white]#(uname -r)#[default]'
setw -g window-status-current-bg white
setw -g window-status-current-fg black
setw -g window-status-bg black
setw -g window-status-fg white
setw -g window-status-separator ' '
setw -g window-status-format '#[fg=255]#[bg=green,bold] #I #[default] #W '
setw -g window-status-current-format '#[bg=cyan,bold]#[fg=white] #I #[default] #W '
set-option -g pane-active-border-fg white
set-option -g pane-active-border-bg black
set-option -g pane-border-fg black
set-option -g pane-border-bg black
#--------------------------------------------------------------------
# Audio
#--------------------------------------------------------------------
set-option -g visual-activity off
set-option -g visual-bell off
set-option -g visual-content off
set-option -g visual-silence off
set-option -g bell-action none
set-window-option -g monitor-activity off
set-window-option -g monitor-content on