Skip to content

Instantly share code, notes, and snippets.

@zygisx
Created March 28, 2014 16:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save zygisx/9837297 to your computer and use it in GitHub Desktop.
Save zygisx/9837297 to your computer and use it in GitHub Desktop.
Tmux config
# bind ctrl-a
set -g prefix C-a
# reload configuration
#bind r source-file ~/.tmux.conf; display ".tmux.conf Reloaded."
# windows numbering starts from 1 instead of zero
set -g base-index 1
# same with panels
set -g pane-base-index 1
#style status line
set -g status-fg white
set -g status-bg black
# style regular windows
setw -g window-status-fg cyan
setw -g window-status-bg default
setw -g window-status-attr dim
# style selected window
setw -g window-status-current-fg white
setw -g window-status-current-bg blue
setw -g window-status-current-attr bright
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment