This Version is for tmux 2.0 ``` set-option -g default-command "reattach-to-user-namespace -l zsh" # -- set the mouse gesture on --# set -g mode-mouse on set -g mouse-resize-pane on set -g mouse-select-pane on set -g mouse-select-window on #-- set the status bar --# set-option -g status on set-option -g status-interval 2 set-option -g status-utf8 on set-option -g status-justify "centre" set-option -g status-left-length 60 set-option -g status-right-length 90 #-- base --# set -g default-terminal "screen-256color" set -g display-time 3000 set -g history-limit 65535 set -g base-index 1 set -g pane-base-index 1 set -s escape-time 0 #-- bindkeys --# #-- change ^b to ^a #set -g prefix ^a #unbind ^b #bind a send-prefix unbind '"' bind - splitw -v unbind % bind | splitw -h bind k selectp -U bind j selectp -D bind h selectp -L bind l selectp -R bind ^k resizep -U 5 bind ^j resizep -D 5 bind ^h resizep -L 5 bind ^l resizep -R 5 bind ^u swapp -U bind ^d swapp -D bind ^e last bind q killp bind '~' splitw htop bind ! splitw ncmpcpp bind m command-prompt "splitw -h 'exec man %%'" bind @ command-prompt "splitw 'exec perldoc -t -f %%'" bind * command-prompt "splitw 'exec perldoc -t -v %%'" bind % command-prompt "splitw 'exec perldoc -t %%'" bind / command-prompt "splitw 'exec ri -T %% | less'" #bind r source-file ~/.tmux.conf \; display "Reloaded!" #-- statusbar --# set -g status-justify centre set -g status-left "#[fg=green]#S:w#I.p#P#[default]" set -g status-left-attr bright set -g status-left-length 20 set -g status-right "#[fg=green]#(/home/xiaodong/bin/uptime)#[default] • #[fg=green]#(cut -d ' ' -f 1-3 /proc/loadavg)#[default]" set -g status-right-attr bright set -g status-utf8 on set -g status-interval 1 set -g visual-activity on setw -g monitor-activity on setw -g automatic-rename off set -g status-keys vi setw -g mode-keys vi #set -g status-bg black #set -g status-fg yellow #setw -g window-status-current-attr bright #setw -g window-status-current-bg red #setw -g window-status-current-fg white #-- colorscheme --# #-- see also: https://github.com/seebi/tmux-colors-solarized --# # default statusbar colors set -g status-bg colour235 #base02 set -g status-fg colour136 #yellow set -g status-attr default # default window title colors setw -g window-status-fg colour244 setw -g window-status-bg default #setw -g window-status-attr dim # active window title colors setw -g window-status-current-fg colour166 #orange setw -g window-status-current-bg default #setw -g window-status-current-attr bright # pane border set -g pane-border-fg colour235 #base02 set -g pane-active-border-fg colour240 #base01 # message text set -g message-bg colour235 #base02 set -g message-fg colour166 #orange # pane number display set -g display-panes-active-colour colour33 #blue set -g display-panes-colour colour166 #orange # clock setw -g clock-mode-colour colour64 #green #-- apps --# # new -s funtoy vim # neww -n root zsh # neww -n zsh zsh # selectw -t 2 ```