.tmux.conf

changeset 278
54da53978ffb
parent 277
5a1849a8608a
child 279
5fbd5271c9dd
equal deleted inserted replaced
277:5a1849a8608a 278:54da53978ffb
148 bind-key j select-pane -D 148 bind-key j select-pane -D
149 bind-key k select-pane -U 149 bind-key k select-pane -U
150 bind-key l select-pane -R 150 bind-key l select-pane -R
151 151
152 # Look good 152 # Look good
153 set-option -g default-terminal "screen-256color" 153 set -g default-terminal "screen-256color"
154 154
155 # Enable mouse support (works in iTerm) (tmux 2.x) 155 # Enable mouse support (works in iTerm) (tmux 2.x)
156 set -g mouse on 156 set -g mouse on
157 set -g mouse-utf8 on 157 set -g mouse-utf8 on
158 158
159 # I think I'd rather enter copy-mode intentionally 159 # I think I'd rather enter copy-mode intentionally
160 # bind -n WheelUpPane select-pane -t= \; copy-mode -e \; send-keys -M 160 # bind -n WheelUpPane select-pane -t= \; copy-mode -e \; send-keys -M
161 # bind -n WheelDownPane select-pane -t= \; send-keys -M 161 # bind -n WheelDownPane select-pane -t= \; send-keys -M
162 162
163 # Change cursor in vim to distinguish between insert and command mode 163 # Change cursor in vim to distinguish between insert and command mode
164 set-option -g terminal-overrides '*88col*:colors=88,*256col*:colors=256,xterm*:XT:Ms=\E]52;%p1%s;%p2%s\007:Cc=\E]12;%p1%s\007:Cr=\E]112\007:Cs=\E]50;CursorShape=%?%p1%{3}%<%t%{0}%e%p1%{2}%-%;%d\007' 164 set -g terminal-overrides '*88col*:colors=88,*256col*:colors=256,xterm*:XT:Ms=\E]52;%p1%s;%p2%s\007:Cc=\E]12;%p1%s\007:Cr=\E]112\007:Cs=\E]50;CursorShape=%?%p1%{3}%<%t%{0}%e%p1%{2}%-%;%d\007'
165 165
166 # Start tab numbering at 1 166 # Start tab numbering at 1
167 set -g base-index 1 167 set -g base-index 1
168 set -g pane-base-index 1
169 set -g renumber-windows on
168 170
169 # Allows for faster key repetition 171 # Allows for faster key repetition
170 set -s escape-time 0 172 set -sg escape-time 0
171 173
172 set-option -g status-bg colour235 174 set -g pane-border-style bg=colour232,fg=colour235
173 set-option -g status-fg cyan 175 set -g pane-active-border-style bg=colour232,fg=colour239
176 set -g window-active-style bg=colour232
177
178 set -g status-bg colour235
179 set -g status-fg cyan
174 180
175 source ~/.tmux.conf.local 181 source ~/.tmux.conf.local
176 182

mercurial