12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- set -g default-terminal "screen-256color"
- set -g history-limit 102400
- set -g update-environment "DISPLAY WINDOWID SSH_AUTH_SOCK SSH_AGENT_PID SSH_CONNECTION"
- setw -g mode-mouse off
- unbind C-b
- unbind l
- set -g prefix C-a
- bind-key C-a last-window
- bind r source-file ~/.tmux.conf
- bind k confirm-before kill-window
- bind a send-prefix
- bind h split-window
- bind v split-window -h
- unbind [
- bind * copy-mode
- set -g status-bg black
- set -g status-fg white
- set-window-option -g window-status-current-fg red
- set-window-option -g window-status-current-bg default
- set -g status-interval 60
- set -g status-left '#[fg=green]#(hostname)#[default] '
- set -g status-right "#[fg=yellow]up: #(uptime|cut -d ' ' -f 4-| sed 's/ days, /d,/ ; s/ load average: /load: /')#[default] #[fg=green]%H:%M %d-%m-%Y#[default] (#S)"
- set -g status-right-length 70
|