Skip to content

Commit

Permalink
minor updates to tmux conf
Browse files Browse the repository at this point in the history
  • Loading branch information
sethwoodworth committed May 8, 2011
1 parent 34e68c5 commit dd6739d
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .tmux.conf
Expand Up @@ -8,7 +8,7 @@ setw -g automatic-rename on # let programs rename tmux-tab
set-window-option -g utf8 on # always utf8
set -g default-terminal "screen-256color"
set -g history-limit 1000000
set -g default-path '~/code'
set -g default-path "$PWD"

## COLORS
set -g status-bg colour53
Expand All @@ -28,6 +28,9 @@ bind - split-window -v
# gnu-screen's next (space)
unbind " "
bind " " next-window
# gnu screen's prev (bspace)
unbind BSpace
bind BSpace previous-window
# rename window
unbind A
bind A command-prompt "rename-window %%"

0 comments on commit dd6739d

Please sign in to comment.