Skip to content

Commit

Permalink
tmux'in without the status
Browse files Browse the repository at this point in the history
  • Loading branch information
mattly committed Aug 14, 2012
1 parent 268104e commit 648017c
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions tmux.conf
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ set -g xterm-keys on

# Window (tab) Management and Navigation
# ======================================
bind-key -r C-w choose-window
bind-key -r C-h select-window -t :-
bind-key -r C-l select-window -t :+
bind-key -r z last-window
Expand Down Expand Up @@ -64,8 +65,8 @@ set -g xterm-keys on
set -g default-terminal "screen-256color"

# statusline
set -g status-fg white
set -g status-bg black
set -g status-fg black
set -g status-bg white

setw -g window-status-fg white
setw -g window-status-bg default
Expand All @@ -89,13 +90,14 @@ set -g xterm-keys on

# Status Line
# ===========
set -g status off
set -g status-utf8 on
set -g status-left "#[fg=white]#S #[fg=white]#I #[fg=white]#P"
set -g status-right "#[fg=white]%d %b %R"
set -g status-left "#[fg=black]#S #[fg=black]#I #[fg=black]#P"
set -g status-right "#[fg=black]%d %b %R"
set -g status-justify centre

setw -g monitor-activity on
set -g visual-activity on
# setw -g monitor-activity on
# set -g visual-activity on

# Copy Mode
# =========
Expand Down

0 comments on commit 648017c

Please sign in to comment.