Skip to content

Instantly share code, notes, and snippets.

@shl7cc
Created March 4, 2015 05:23
Show Gist options
  • Save shl7cc/0aa498e35f2dea2ae25c to your computer and use it in GitHub Desktop.
Save shl7cc/0aa498e35f2dea2ae25c to your computer and use it in GitHub Desktop.
tmux conf
# Use Ctrl-o as prefix command
unbind C-b
set-option -g prefix C-o
bind-key C-o last-window
# Start numbering at 1
set -g base-index 1
# Set status bar
set -g status-bg "#585858"
set -g status-fg "#c6c6c6"
set -g status-left-length 30
set -g status-left "#[fg=#ffffff]#H"
set -g status-right "#[fg=#ffffff]#(date +'%H:%M %d/%m/%Y') "
# Activity monitoring
setw -g monitor-activity on
set -g visual-activity on
# Highlight active window
set-window-option -g window-status-current-bg "#ffffff"
set-window-option -g window-status-current-fg "#585858"
# Change pane split colours, don't need active borders
set -g pane-border-bg white
set -g pane-border-fg white
set -g pane-active-border-bg white
set -g pane-active-border-fg white
# move like vi in scroll-mode
setw -g mode-keys vi
set -g status-keys vi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment