Skip to content

Commit

Permalink
Merge remote-tracking branch 'tmux/master'
Browse files Browse the repository at this point in the history
Conflicts:
	.tmuxrc
  • Loading branch information
al-the-x committed Jun 8, 2011
2 parents 74d1fc8 + d35bc17 commit 53a1457
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion .tmuxrc
Expand Up @@ -31,15 +31,25 @@ set-option -g status-left-length 40
set-option -g status-left "#H" set-option -g status-left "#H"
set-option -g status-right "#(uptime|cut -d "," -f 2-)" set-option -g status-right "#(uptime|cut -d "," -f 2-)"


# make the key bindings work like VIM
set-option -g status-keys vi
set-window-option -g mode-keys vi

# fix the titles # fix the titles
set -g set-titles on set -g set-titles on
set -g set-titles-string "#I:#W" set -g set-titles-string "#I:#W"


# be notified when there is activity in one of your windows # be notified when there is activity in one of your windows
setw -g monitor-activity on set-window-option -g monitor-activity on


# don't rename windows automatically # don't rename windows automatically
set-window-option -g automatic-rename off set-window-option -g automatic-rename off


# reload changes in tmux, handy # reload changes in tmux, handy
bind-key r source-file ~/.tmuxrc bind-key r source-file ~/.tmuxrc

# make the split panes more mnemonic
unbind-key '"'; unbind-key %
bind-key | split-window -h; bind-key C-| split-window -h
bind-key _ split-window -v; bind-key C-_ cplit-window -v

0 comments on commit 53a1457

Please sign in to comment.