unbind-key C-b set -g prefix C-a bind C-a send-prefix set -g default-terminal "screen-256color" set -g utf8 set-window-option -g utf8 on #### COLOUR (Solarized 256) # default statusbar colors set-option -g status-bg colour235 #base02 set-option -g status-fg colour136 #yellow set-option -g status-attr default # default window title colors set-window-option -g window-status-fg colour244 #base0 set-window-option -g window-status-bg default #set-window-option -g window-status-attr dim # active window title colors set-window-option -g window-status-current-fg colour166 #orange set-window-option -g window-status-current-bg default #set-window-option -g window-status-current-attr bright # pane border set-option -g pane-border-fg colour235 #base02 set-option -g pane-active-border-fg colour240 #base01 # message text set-option -g message-bg colour235 #base02 set-option -g message-fg colour166 #orange # pane number display set-option -g display-panes-active-colour colour33 #blue set-option -g display-panes-colour colour166 #orange # Tmux Windows start from 1, so no big reaches ;) set -g base-index 1 # Enable mouse, it's sometimes nice for scrolling: set -g mode-mouse on # Increase scroll-back history, so you can see more: set -g history-limit 10000 # clock set-window-option -g clock-mode-colour colour64 #green # plugins set -g @plugin 'tmux-plugins/tpm' set -g @plugin 'tmux-plugins/tmux-sensible' ## resurrect plugin set -g @plugin 'tmux-plugins/tmux-resurrect' set -g @resurrect-save-shell-history 'on' run '~/.tmux/plugins/tpm/tpm'