-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.tmux.conf
47 lines (32 loc) · 986 Bytes
/
.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
set -g @almost-sensible 'on'
set -g mouse 'on'
unbind C-b
set -g prefix ^A
bind-key a send-prefix
# other ^A
unbind ^A
bind ^A last-window
# open a man page in new window
bind / command-prompt "split-window 'exec man %%'"
# enable wm window titles
set -g set-titles on
set -g status-right ""
set -g status-left "[#h] "
#### COLOUR (Solarized dark)
# default statusbar colors
set-option -g status-bg black #base02
set-option -g status-fg green #yellow
# pane number display
set-option -g display-panes-active-colour blue #blue
set-option -g display-panes-colour brightred #orange
# clock
#set-window-option -g clock-mode-colour green #green
set-option -g status-justify left
bind r source-file ~/.tmux.conf
#Send prefix
bind-key a send-prefix
# Urlview support
bind-key u capture-pane \; save-buffer /tmp/tmux-buffer \; new-window -n "urlview" '$SHELL -c "urlview < /tmp/tmux-buffer"'
# setw -g aggressive-resize on
# Use vim keybindings in copy mode
setw -g mode-keys vi