Skip to content

Instantly share code, notes, and snippets.

@schisamo
Forked from jtimberman/gist:714944
Created December 9, 2010 04:35
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 schisamo/734344 to your computer and use it in GitHub Desktop.
Save schisamo/734344 to your computer and use it in GitHub Desktop.
tmux.conf
# this file is controlled by Chef
# feel free to copy it to your ~/.tmux.conf
unbind C-a
set -g prefix C-a
bind C-a send-prefix
set -g default-terminal screen-256color
setw -g xterm-keys on
set -g status-utf8 on
set -g status-bg black
set -g status-fg cyan
set -g status-left-length 40
set -g status-left '#[fg=red]#H#[fg=green]:#[fg=white]#S #[fg=green]][#[default]'
set -g status-right '#[fg=green]][ #[fg=blue]%Y-%m-%d #[fg=white]%H:%M#[default]'
setw -g monitor-activity on
set -g visual-activity on
setw -g window-status-current-bg blue
set -g history-limit 4096
bind r source-file ~/.tmux.conf
# Copy mode in vi
unbind [
bind Escape copy-mode
setw -g mode-keys vi
setw -g mode-mouse on
# Better splitting
unbind %
unbind '"'
bind h split-window -h
bind v split-window -v
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment