2014-04-19 13:25:29 -04:00
|
|
|
set -g status-bg black
|
|
|
|
set -g status-fg white
|
|
|
|
set -g status-left '#[fg=green]#H'
|
|
|
|
set-window-option -g window-status-current-bg red
|
|
|
|
setw -g monitor-activity on
|
|
|
|
set -g visual-activity on
|
|
|
|
setw -g automatic-rename on
|
|
|
|
unbind %
|
|
|
|
bind | split-window -h
|
|
|
|
bind - split-window -v
|
|
|
|
set -g default-terminal "screen-256color"
|
2014-06-21 20:40:54 -04:00
|
|
|
set-option -g history-limit 50000
|
2014-04-19 13:25:29 -04:00
|
|
|
|
|
|
|
set -g prefix C-a
|
|
|
|
bind C-a send-prefix
|
|
|
|
unbind C-b
|
2014-06-23 22:53:55 -04:00
|
|
|
bind-key k select-pane -U
|
|
|
|
bind-key j select-pane -D
|
|
|
|
bind-key h select-pane -L
|
|
|
|
bind-key l select-pane -R
|
2014-06-21 20:40:54 -04:00
|
|
|
bind-key H resize-pane -L 5
|
|
|
|
bind-key J resize-pane -D 5
|
|
|
|
bind-key K resize-pane -U 5
|
|
|
|
bind-key L resize-pane -R 5
|
|
|
|
setw -g mode-mouse off
|
|
|
|
set -g mouse-select-pane off
|
|
|
|
set -g mouse-resize-pane off
|
|
|
|
set -g mouse-select-window off
|
|
|
|
setw -g mode-keys vi
|
|
|
|
bind-key -t vi-copy v begin-selection
|
|
|
|
bind-key -t vi-copy y copy-pipe "reattach-to-user-namespace"
|
|
|
|
set-option -g pane-border-fg colour235
|
|
|
|
set-option -g pane-active-border-fg colour240
|
|
|
|
set-option -g status on
|
|
|
|
set -g status-utf8 on
|
|
|
|
set -g status-interval 5
|
|
|
|
set -g status-right-length 60
|
|
|
|
set -g status-right "#[fg=white]#S #I:#P #[fg-yellow] %d %b %Y #[fg=green] %l:%M %p #(date -u | awk '{print $4}')"
|
|
|
|
bind-key R source-file ~/.tmux.conf
|