-
Notifications
You must be signed in to change notification settings - Fork 6
/
tmux.conf
77 lines (57 loc) · 1.89 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
67
68
69
70
71
72
73
74
75
76
77
# This enables pbcopy/pbpaste in os x.
#set-option -g default-command "reattach-to-user-namespace -l zsh"
# Set prefix to Ctrl-a like screen.
set -g prefix C-a
unbind C-b
bind a send-prefix
bind r source-file ~/.tmux.conf \; display "Reloaded!"
# In case pinky doesn't quite come off ctrl.
bind C-n next-window
bind C-p previous-window
# Split panes using | and -.
bind | split-window -h
bind - split-window -v
unbind '"'
unbind %
# Screen compatability.
bind Escape copy-mode
bind '"' choose-window
bind C-a last-window
bind A command-prompt 'rename-window %%'
# Make escape pass through immediately for Vim.
set -sg escape-time 0
# Disable status bar.
set -g status off
setw -g mode-keys vi
set -g default-terminal "screen-256color"
#### COLOUR (Solarized dark)
#### COLOUR (Solarized dark)
# default statusbar colors
set-option -g status-style fg=yellow,bg=black #yellow and base02
# default window title colors
set-window-option -g window-status-style fg=brightblue,bg=default #base0 and default
#set-window-option -g window-status-style dim
# active window title colors
set-window-option -g window-status-current-style fg=brightred,bg=default #orange and default
#set-window-option -g window-status-current-style bright
# pane border
set-option -g pane-border-style fg=black #base02
set-option -g pane-active-border-style fg=brightgreen #base01
# message text
set-option -g message-style fg=brightred,bg=black #orange and base01
# 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
# bell
set-window-option -g window-status-bell-style fg=black,bg=red #base02, red
# Vim style pane selection
bind h select-pane -L
bind j select-pane -D
bind k select-pane -U
bind l select-pane -R
bind C-h select-pane -L
bind C-j select-pane -D
bind C-k select-pane -U
bind C-l select-pane -R