Created
November 25, 2010 05:22
-
-
Save jtimberman/714944 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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