Skip to content

Instantly share code, notes, and snippets.

@cbadke
Created March 2, 2012 03:23
Show Gist options
  • Save cbadke/1955322 to your computer and use it in GitHub Desktop.
Save cbadke/1955322 to your computer and use it in GitHub Desktop.
tmux config
bind | split-window -h
bind - split-window -v
# Set status bar
set -g status-bg black
set -g status-fg green
#set -g status-left '#[fg=green]#H'
set -g status-right-length 50
set -g status-left-length 50
set -g status-right '[#[fg=yellow]#(date +"%H:%M")#[fg=green]]'
set-option -g status-attr bright
set-option -g status-utf8 on
set-option -g status-keys vi
setw -g xterm-keys on
# Highlight active window
#set-window-option -g window-status-current-bg red
# Set window notifications
#setw -g monitor-activity on
set -g visual-activity on
# use the vim motion keys to move between panes
bind h select-pane -L
bind j select-pane -D
bind k select-pane -U
bind l select-pane -R
## message colours
set-option -g message-bg colour4
set-option -g message-fg colour14
## nice global options
set-option -g set-titles on
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment